From ab0f0095510174845f10f4e9b788232c10dedeec Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Tue, 2 Jan 2024 11:32:09 -0800 Subject: [PATCH] Stringify project id Sometimes it's actually an integer, and our rich text output does not like that and throws an error --- deployer/commands/generate/billing/outputers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployer/commands/generate/billing/outputers.py b/deployer/commands/generate/billing/outputers.py index f3fb6d6ca2..4158ec099c 100644 --- a/deployer/commands/generate/billing/outputers.py +++ b/deployer/commands/generate/billing/outputers.py @@ -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