--- a/tools/report.py 2026-03-02 09:14:03.000000000 +0000 +++ b/tools/report.py 2026-03-02 10:41:55.000000000 +0000 @@ -1,5 +1,5 @@ def totals(rows): - total = 0 - for row in rows: - total += row.amount - return total + total = 0 + for row in rows: + total += row.amount + return total