* Remove assertion that doesn't work on Python 3

This commit is contained in:
Matthew Honnibal 2015-01-05 12:51:16 +11:00
parent 170b93e89a
commit 2856946a66

View File

@ -68,7 +68,6 @@ class Lemmatizer(object):
def lemmatize(string, index, exceptions, rules):
assert isinstance(string, unicode)
string = string.lower()
forms = []
if string in index: