comment out excessive printing
authorJacob Lifshay <programmerjake@gmail.com>
Thu, 23 Sep 2021 02:17:06 +0000 (19:17 -0700)
committerJacob Lifshay <programmerjake@gmail.com>
Thu, 23 Sep 2021 02:17:06 +0000 (19:17 -0700)
src/budget_sync/main.py

index 8d47c69dc770dc80037c020e294fbe6d67458fd2..998bdba189370989c7545a41290ee4508f108636 100644 (file)
@@ -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: