From 1ac490ded092a2662f86312c5910b69e1b1db2dd Mon Sep 17 00:00:00 2001 From: Ada Werefox Date: Fri, 5 Dec 2025 11:54:19 -0800 Subject: [PATCH] Remove unnecessary debug statement. --- 05/main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/05/main.py b/05/main.py index 05ff945..be2be47 100755 --- a/05/main.py +++ b/05/main.py @@ -66,7 +66,6 @@ def main() -> None: available_fresh_ids = find_available_fresh_ids( input_fresh_ranges, input_available_ids ) - debug(f"AVAILABLE FRESH IDS: {available_fresh_ids}") print(f"There are {available_fresh_ids} available fresh ingedients.") condensed_id_ranges = condense_id_ranges(input_fresh_ranges) debug(f"CONDENSESD RANGES: {condensed_id_ranges}")