From 7faef1c9a9646766f7caf3f1ae02a91029dfe174 Mon Sep 17 00:00:00 2001 From: jorts Date: Sun, 31 Aug 2025 14:32:45 +0100 Subject: [PATCH] remove unnecessart print from fetch --- tools/fetch.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/fetch.py b/tools/fetch.py index 4aa8358..15aa520 100644 --- a/tools/fetch.py +++ b/tools/fetch.py @@ -9,8 +9,6 @@ from bs4 import BeautifulSoup from urllib.parse import urlparse def reader_mode(html_content: str) -> str: - print("Getting reader mode for HTML", html_content) - doc = Document(html_content) short_title = doc.short_title() or "" title_html = f"

{html.escape(short_title)}

\n" if short_title else ""