Remove semi-colon

This commit is contained in:
crista
2021-03-29 11:18:06 -07:00
committed by GitHub
parent 9c8a7b7745
commit 185f174b6c

View File

@@ -66,7 +66,7 @@ def print_all(word_freqs):
"""
if(len(word_freqs) > 0):
print(word_freqs[0][0], '-', word_freqs[0][1])
print_all(word_freqs[1:]);
print_all(word_freqs[1:])
#
# The main function