From 32da2aa511aa895b088e6343e6fb6bd6f2fdd9ce Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Sat, 24 Feb 2024 13:11:56 -0800 Subject: [PATCH] Update config.py --- backend/config.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/backend/config.py b/backend/config.py index fadae68c..b16913c1 100644 --- a/backend/config.py +++ b/backend/config.py @@ -83,8 +83,6 @@ for version in soup.find_all("h2"): # Find the next sibling that is a h3 tag (section title) current = version.find_next_sibling() - print(current) - while current and current.name != "h2": if current.name == "h3": section_title = current.get_text().lower() # e.g., "added", "fixed"