diff --git a/huffman.py b/huffman.py index c513d6c..4a3247f 100644 --- a/huffman.py +++ b/huffman.py @@ -115,7 +115,7 @@ def compress(self): with open(self.path, 'r+') as file, open(output_path, 'wb') as output: text = file.read() - text = text.rstrip() + # text = text.rstrip() frequency = self.make_frequency_dict(text) self.make_heap(frequency)