From eb23f2c31dd8a69ec71f27ae3d2f2adc9d5aa7b8 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sat, 10 Oct 2015 22:11:20 +1100 Subject: [PATCH] * Map NO_TAG to NIL in parts_of_speech.pxd --- spacy/parts_of_speech.pxd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/parts_of_speech.pxd b/spacy/parts_of_speech.pxd index 17e349435..9fbdbd71f 100644 --- a/spacy/parts_of_speech.pxd +++ b/spacy/parts_of_speech.pxd @@ -2,7 +2,7 @@ from .symbols cimport * cpdef enum univ_pos_t: - NO_TAG = EMPTY_VALUE + NO_TAG = NIL ADJ = POS_adj ADP = POS_adp ADV = POS_adv