Skip to content

Commit

Permalink
Fix Twitter morphs
Browse files Browse the repository at this point in the history
  • Loading branch information
zsef123 committed Aug 3, 2017
1 parent d0fd8e8 commit 7096c33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion konlpy/tag/_twitter.py
Expand Up @@ -64,7 +64,7 @@ def nouns(self, phrase):
def morphs(self, phrase, norm=False, stem=False):
"""Parse phrase to morphemes."""

return [s for s, t in self.pos(phrase)]
return [s for s, t in self.pos(phrase, norm=norm, stem=stem)]

def phrases(self, phrase):
"""Phrase extractor."""
Expand Down

0 comments on commit 7096c33

Please sign in to comment.