From 1db3f82f155a0eb8090a0d1b073f46664f8bfbce Mon Sep 17 00:00:00 2001 From: AaronBenDaniel <144371000+AaronBenDaniel@users.noreply.github.com> Date: Tue, 10 Jun 2025 10:59:10 -0400 Subject: [PATCH] fix(api): Remove debug print statement --- src/api/src/create_book/parser.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/api/src/create_book/parser.py b/src/api/src/create_book/parser.py index c97018f..46531d5 100644 --- a/src/api/src/create_book/parser.py +++ b/src/api/src/create_book/parser.py @@ -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")