remove prints

This commit is contained in:
Daniel 2023-12-02 13:43:54 +01:00
parent 0fe5fa5536
commit 361c92a3df

View file

@ -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")