From ae9dfb48e83b8775570860fc61319d45916d8e18 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Tue, 1 Aug 2023 11:18:48 +0200 Subject: [PATCH] Switch to dummy implementation for BaseVectors.to_ops --- spacy/vectors.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/vectors.pyx b/spacy/vectors.pyx index 6c2131ebb..2817bcad4 100644 --- a/spacy/vectors.pyx +++ b/spacy/vectors.pyx @@ -81,7 +81,7 @@ cdef class BaseVectors: raise NotImplementedError def to_ops(self, ops: Ops): - raise NotImplementedError + pass # add dummy methods for to_bytes, from_bytes, to_disk and from_disk to # allow serialization