From 67504bfd4774c00a34e0f587d2e6edbdbde61de7 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Sat, 11 Sep 2021 10:00:33 -0700 Subject: [PATCH] Remove debugging prints. --- novel_stats/novel_stats.py | 3 --- 1 file changed, 3 deletions(-) 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