From 36c5b628128cfcac8e8b7ef3681298446ea1c329 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Fri, 15 Sep 2023 14:07:19 +0200 Subject: [PATCH] shortend description tags --- scan.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scan.py b/scan.py index b68c34e..7595d4b 100644 --- a/scan.py +++ b/scan.py @@ -79,14 +79,14 @@ class DirectoryHandler: if no_comments: file_type = os.path.splitext(file_path)[1] content = CodeProcessor.remove_comments(content, file_type) - print(f"======== File Path: {file_path} ========") + print(f"<< START: {file_path} >>") if compress: compressed_content = CodeProcessor.compress(content) - print(f"======== Compressed Code ========") + print(f"COMPRESSED CODE: ") print(compressed_content) else: print(content) - print("==================================\n") + print("<< END >>\n") except UnicodeDecodeError: print(f"Warning: Could not read file due to encoding issues: {file_path}") exit(1)