mirror of https://github.com/explosion/spaCy.git
Don't raise in Pipe.initialize if not implemented
This commit is contained in:
parent
7d04ba20c0
commit
b799af16de
|
@ -207,7 +207,7 @@ cdef class Pipe:
|
||||||
|
|
||||||
DOCS: https://nightly.spacy.io/api/pipe#initialize
|
DOCS: https://nightly.spacy.io/api/pipe#initialize
|
||||||
"""
|
"""
|
||||||
raise NotImplementedError(Errors.E931.format(method="initialize", name=self.name))
|
pass
|
||||||
|
|
||||||
def _ensure_examples(self, get_examples):
|
def _ensure_examples(self, get_examples):
|
||||||
if get_examples is None or not hasattr(get_examples, "__call__"):
|
if get_examples is None or not hasattr(get_examples, "__call__"):
|
||||||
|
|
Loading…
Reference in New Issue