From 0243dce8896fca0067301c75253f3c9cc8813d71 Mon Sep 17 00:00:00 2001 From: Igor Chubin Date: Sat, 18 May 2019 14:31:57 +0000 Subject: [PATCH] lib/fmt/comments.py: removed unused print() --- lib/fmt/comments.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/fmt/comments.py b/lib/fmt/comments.py index a741113..855fea9 100644 --- a/lib/fmt/comments.py +++ b/lib/fmt/comments.py @@ -232,7 +232,6 @@ def _beautify(text, filetype, add_comments=False, remove_text=False): # We shift the code if and only if we either convert the text into comments # or remove the text completely. Otherwise the code has to remain aligned unindent_code = add_comments or remove_text - print(unindent_code) lines = [x.rstrip('\n') for x in text.splitlines()] lines = _cleanup_lines(lines)