From c92a760e65bbcb21ae33c2a52ce30615fc0c670e Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Mon, 18 Nov 2024 14:04:29 -0800 Subject: [PATCH] fix --- app/performance_dashboard/rest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/performance_dashboard/rest.py b/app/performance_dashboard/rest.py index 05a54eb45..52267a353 100644 --- a/app/performance_dashboard/rest.py +++ b/app/performance_dashboard/rest.py @@ -99,7 +99,7 @@ def transform_into_notification_by_type_json(total_notifications): def transform_processing_time_results_to_json(processing_time_results): j = [] - for x in processing_time_results.items: + for x in processing_time_results: j.append({"date": x.date, "percentage_under_10_seconds": x.percentage}) return j