Remove debugging prints.

This commit is contained in:
Dan Helfman 2021-09-11 10:00:33 -07:00
parent 9bc6d20a74
commit 67504bfd47
1 changed files with 0 additions and 3 deletions

View File

@ -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