Skip to content

Commit

Permalink
Merge pull request #5 from dvzubarev/fix-typo
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
IINemo authored Apr 8, 2019
2 parents 3787634 + 2bb9cac commit 1d8b8cd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/isanlp/en/processor_tokenizer_nltk_en.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,4 @@ def __call__(self, text):
List of Token objects.
"""

return [Token(text[start : end], start, end) for (start, end) in self._nltk_proc.span_tokenize(text)]

return [Token(text[start : end], start, end) for (start, end) in self._proc.span_tokenize(text)]

0 comments on commit 1d8b8cd

Please sign in to comment.