projects
/
utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0c72d3e
)
comment out excessive printing
author
Jacob Lifshay
<programmerjake@gmail.com>
Thu, 23 Sep 2021 02:17:06 +0000
(19:17 -0700)
committer
Jacob Lifshay
<programmerjake@gmail.com>
Thu, 23 Sep 2021 02:17:06 +0000
(19:17 -0700)
src/budget_sync/main.py
patch
|
blob
|
history
diff --git
a/src/budget_sync/main.py
b/src/budget_sync/main.py
index 8d47c69dc770dc80037c020e294fbe6d67458fd2..998bdba189370989c7545a41290ee4508f108636 100644
(file)
--- 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: