From 361c92a3df49aee94e5ef4c9886b04802303d0ba Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 2 Dec 2023 13:43:54 +0100 Subject: [PATCH] remove prints --- src/html_helper.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/html_helper.py b/src/html_helper.py index 8f94b67..6e81c7e 100644 --- a/src/html_helper.py +++ b/src/html_helper.py @@ -174,10 +174,8 @@ def get_html_files(path, output_file_path): output_file_path = os.path.abspath(output_file_path) for p in pathlib.Path(path).rglob("*.html"): - print(p) res = str(p.absolute()) if output_file_path in res: - print("damn") continue tmp = BeautifulSoup("".join(open(res)), features="html.parser")