removed debug

This commit is contained in:
2026-01-17 19:41:03 +11:00
parent 7494c0ae16
commit b81502e6db

View File

@@ -119,7 +119,6 @@ def calculate_savings_depletion(finance, bill_data, bill_type):
yr=str(current_date.year) yr=str(current_date.year)
for b in bill_data: for b in bill_data:
if yr in b['bill_date']: if yr in b['bill_date']:
print( f"Seems {yr} is in {b['bill_date']} -- add {b['amount']}" )
total += b['amount'] total += b['amount']
print( f"this yr={current_date.year} - total={total}" ) print( f"this yr={current_date.year} - total={total}" )