fix(api): Remove debug print statement

This commit is contained in:
AaronBenDaniel
2025-06-10 10:59:10 -04:00
parent b36dc92718
commit 1db3f82f15
-1
View File
@@ -25,7 +25,6 @@ def clean_tree(title: str, id: int, body: str) -> BeautifulSoup:
children = cast(Tag, original_soup.find("body")).children
for tag in cast(list[Tag], list(children)):
if tag.name != "p": # Casted to lower
print(tag.name)
continue
style = tag.attrs.get("style")