Skip to content

Commit

Permalink
Stringify project id
Browse files Browse the repository at this point in the history
Sometimes it's actually an integer, and our rich text output
does not like that and throws an error
  • Loading branch information
yuvipanda committed Jan 2, 2024
1 parent eb8e14b commit ab0f009
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 ab0f009

Please sign in to comment.