Skip to content

Commit

Permalink
Merge pull request #3561 from yuvipanda/waterrr
Browse files Browse the repository at this point in the history
billing script: Stringify project id
  • Loading branch information
yuvipanda authored Jan 4, 2024
2 parents 4cf22e6 + ab0f009 commit 2cb3ceb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deployer/commands/generate/billing/outputers.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def output_cost_table(output, google_sheet_url, rows):
print(r)
table.add_row(
index.strftime("%Y-%m"),
r["project"],
str(r["project"]),
str(round(float(r["total_with_credits"]), 2)),
)
last_period = index
Expand Down

0 comments on commit 2cb3ceb

Please sign in to comment.