Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
fix for travis tab indendation error
  • Loading branch information
amruth27m committed Mar 12, 2017
1 parent d3e7410 commit ad0909b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libindic/ngram/__init__.py
Expand Up @@ -43,7 +43,7 @@ def syllableNgram(self, text, window_size=2):
words = text.split(" ")
ngrams = []
for word in words:
word = self.normalizer.normalize(word)
word = self.normalizer.normalize(word)
syllables = self.syllabifier.syllabify(word)
syllable_count = len(syllables)
window_start = 0
Expand Down

0 comments on commit ad0909b

Please sign in to comment.