reformat up to latest version of black

This commit is contained in:
Kenneth Kehl
2024-04-01 15:12:33 -07:00
parent 87db56622e
commit ebdb78e52e
241 changed files with 334 additions and 92 deletions

View File

@@ -180,12 +180,12 @@ def volumes_by_service_report():
{
"service_name": row.service_name,
"service_id": str(row.service_id),
"organization_name": row.organization_name
if row.organization_name
else "",
"organization_id": str(row.organization_id)
if row.organization_id
else "",
"organization_name": (
row.organization_name if row.organization_name else ""
),
"organization_id": (
str(row.organization_id) if row.organization_id else ""
),
"free_allowance": int(row.free_allowance),
"sms_notifications": int(row.sms_notifications),
"sms_chargeable_units": int(row.sms_chargeable_units),