mirror of
https://github.com/explosion/spaCy.git
synced 2025-07-03 03:13:08 +03:00
Remove print statement
This commit is contained in:
parent
ba23d63c35
commit
9cb2aef587
|
@ -25,7 +25,6 @@ class Lemmatizer(object):
|
||||||
elif univ_pos == PUNCT:
|
elif univ_pos == PUNCT:
|
||||||
univ_pos = 'punct'
|
univ_pos = 'punct'
|
||||||
# See Issue #435 for example of where this logic is requied.
|
# See Issue #435 for example of where this logic is requied.
|
||||||
print("Check base form", string)
|
|
||||||
if self.is_base_form(univ_pos, morphology):
|
if self.is_base_form(univ_pos, morphology):
|
||||||
return set([string.lower()])
|
return set([string.lower()])
|
||||||
lemmas = lemmatize(string, self.index.get(univ_pos, {}),
|
lemmas = lemmatize(string, self.index.get(univ_pos, {}),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user