From c17f39ba37f277b0a9782c161511f8103ea2a5a8 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 20 Jun 2022 09:59:21 +0100 Subject: [PATCH] formatting (keep below 80 chars) --- src/budget_sync/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/budget_sync/main.py b/src/budget_sync/main.py index f34a22b..3024835 100644 --- a/src/budget_sync/main.py +++ b/src/budget_sync/main.py @@ -53,14 +53,14 @@ def print_budget_then_children(indent, nodes, bug_id): """ bug = nodes[bug_id] - print("bug #%5d %sbudget %5s excltasks %5s sub_tot %s paid_tot %s" % + print("bug #%5d %s budget %6s excltasks %6s s %s p %s" % (bug.bug.id, ' ' * (indent*4), str(bug.fixed_budget_including_subtasks), str(bug.fixed_budget_excluding_subtasks), str(bug.submitted_including_subtasks), str(bug.paid_including_subtasks))) - # print(repr(bug)) + for child in bug.immediate_children: if (str(child.budget_including_subtasks) == "0" and str(child.budget_excluding_subtasks) == "0"): -- 2.30.2