From 99ffc4d8c2517e01ca0bcea2acf8cd3fc51fd961 Mon Sep 17 00:00:00 2001 From: Matthew Grove Date: Thu, 20 Feb 2020 21:26:27 +0000 Subject: [PATCH] Remove unnecessary line break --- huffman-coding.py | 1 - 1 file changed, 1 deletion(-) diff --git a/huffman-coding.py b/huffman-coding.py index 141525a..65ac762 100644 --- a/huffman-coding.py +++ b/huffman-coding.py @@ -73,5 +73,4 @@ for char in txt: output += "".join(find_node(nodes, char)) # print encrypted message - print("Encrypted message: %s" % output)