Remove print statement

This commit is contained in:
Matthew Honnibal 2017-09-14 13:38:28 +02:00
parent ba23d63c35
commit 9cb2aef587

View File

@ -25,7 +25,6 @@ class Lemmatizer(object):
elif univ_pos == PUNCT:
univ_pos = 'punct'
# See Issue #435 for example of where this logic is requied.
print("Check base form", string)
if self.is_base_form(univ_pos, morphology):
return set([string.lower()])
lemmas = lemmatize(string, self.index.get(univ_pos, {}),