From 185f174b6c1d50ad51987765f42e078a6081e5d3 Mon Sep 17 00:00:00 2001 From: crista Date: Mon, 29 Mar 2021 11:18:06 -0700 Subject: [PATCH] Remove semi-colon --- 06-pipeline/tf-06.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/06-pipeline/tf-06.py b/06-pipeline/tf-06.py index 8dabc31..033bdc6 100755 --- a/06-pipeline/tf-06.py +++ b/06-pipeline/tf-06.py @@ -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