From 49cf002ac440cd07c3d41ba5f318a5441fa60394 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Fri, 8 Mar 2019 18:59:25 +0100 Subject: [PATCH] Add missing import --- spacy/pipeline/morphologizer.pyx | 1 + 1 file changed, 1 insertion(+) diff --git a/spacy/pipeline/morphologizer.pyx b/spacy/pipeline/morphologizer.pyx index 223bb6ec5..7d0ad42cf 100644 --- a/spacy/pipeline/morphologizer.pyx +++ b/spacy/pipeline/morphologizer.pyx @@ -17,6 +17,7 @@ from ..tokens.doc cimport Doc from ..vocab cimport Vocab from ..morphology cimport Morphology from ..morphology import get_field_size, get_field_offset, parse_feature, FIELDS +from ..morphology import FEATURES class Morphologizer(Pipe):