From: Jacob Lifshay Date: Thu, 23 Sep 2021 02:17:06 +0000 (-0700) Subject: comment out excessive printing X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ea16aa2251ee00121d7384632a4bc3f00939dff4;p=utils.git comment out excessive printing --- diff --git a/src/budget_sync/main.py b/src/budget_sync/main.py index 8d47c69..998bdba 100644 --- a/src/budget_sync/main.py +++ b/src/budget_sync/main.py @@ -39,7 +39,7 @@ def write_budget_csv(budget_graph: BudgetGraph, total_req_or_paid = 0 total_paid = 0 for payment in payments: - print("\t", payment) + # print("\t", payment) total += payment.amount if payment.submitted is not None: total_requested += payment.amount @@ -112,7 +112,7 @@ def write_budget_csv(budget_graph: BudgetGraph, row[name+"_req"] = requested row[name+"_paid"] = paid - print(row) + # print(row) milestone_csvs[milestone][node.bug.id] = row with open(output_dir.joinpath("csvs.mdwn"), "w") as f: