Skip to content

Commit

Permalink
style(markov): pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
accraze committed Nov 28, 2016
1 parent 964c3bf commit 634123b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ia_markov/markov.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class POSifiedText(markovify.Text):

def word_split(self, sentence):
words = re.split(self.word_split_pattern, sentence)
print (words)
print(words)
try:
words = ["::".join(tag) for tag in nltk.pos_tag(words)]
except:
Expand Down

0 comments on commit 634123b

Please sign in to comment.