From b27bd42613aa98a9a9625f6b44b98fce94f630f2 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Fri, 8 Mar 2019 19:06:02 +0100 Subject: [PATCH] Fix compile error --- spacy/pipeline/pipes.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/pipeline/pipes.pyx b/spacy/pipeline/pipes.pyx index 237d36a12..1d428731e 100644 --- a/spacy/pipeline/pipes.pyx +++ b/spacy/pipeline/pipes.pyx @@ -363,7 +363,7 @@ class Tagger(Pipe): @property.setter def set_morphology(self, value): - return self.cfg["set_morphology"] = True + self.cfg["set_morphology"] = True @property def labels(self):