Remove print statement

This commit is contained in:
Matthew Honnibal 2017-03-26 13:17:36 +02:00
parent 2f63806ddb
commit 6b325c2c12
1 changed files with 0 additions and 1 deletions

View File

@ -47,7 +47,6 @@ class Lemmatizer(object):
morphology = {} if morphology is None else morphology
others = [key for key in morphology if key not in (POS, 'number', 'pos', 'verbform')]
true_morph_key = morphology.get('morph', 0)
print(univ_pos, morphology)
if univ_pos == 'noun' and morphology.get('Number') == 'sing':
return True
elif univ_pos == 'verb' and morphology.get('VerbForm') == 'inf':