diff --git a/novel_stats/novel_stats.py b/novel_stats/novel_stats.py index 59e2bfa..f46a005 100755 --- a/novel_stats/novel_stats.py +++ b/novel_stats/novel_stats.py @@ -23,11 +23,8 @@ def count_words(line): if not word.strip() or word == '*' or word.startswith('#'): continue - #print('{} '.format(word), end='') - count += 1 - #print('-> {}'.format(count)) return count