fix date format in batch review (notify-admin-1171)

This commit is contained in:
Kenneth Kehl
2024-02-29 08:24:53 -08:00
parent c514214fb0
commit 8661a22353
10 changed files with 92 additions and 72 deletions

View File

@@ -34,8 +34,8 @@ def performance():
stats["average_percentage_under_10_seconds"] = mean(
[row["percentage_under_10_seconds"] for row in stats["processing_time"]] or [0]
)
stats[
"count_of_live_services_and_organizations"
] = status_api_client.get_count_of_live_services_and_organizations()
stats["count_of_live_services_and_organizations"] = (
status_api_client.get_count_of_live_services_and_organizations()
)
return render_template("views/performance.html", **stats)