From b81502e6db0936db2af28272701387c67e6aa634 Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Sat, 17 Jan 2026 19:41:03 +1100 Subject: [PATCH] removed debug --- calc.py | 1 - 1 file changed, 1 deletion(-) diff --git a/calc.py b/calc.py index cec53cf..2a1f74e 100644 --- a/calc.py +++ b/calc.py @@ -119,7 +119,6 @@ def calculate_savings_depletion(finance, bill_data, bill_type): yr=str(current_date.year) for b in bill_data: if yr in b['bill_date']: - print( f"Seems {yr} is in {b['bill_date']} -- add {b['amount']}" ) total += b['amount'] print( f"this yr={current_date.year} - total={total}" )