From 4fd6ab137a1ddf3ce1a708b63cdc4a91f54b15f8 Mon Sep 17 00:00:00 2001 From: stvnrlly Date: Thu, 2 Mar 2023 14:01:52 -0500 Subject: [PATCH] revert TODO for notification types --- app/service/statistics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/service/statistics.py b/app/service/statistics.py index c1fdc449c..e36106f0b 100644 --- a/app/service/statistics.py +++ b/app/service/statistics.py @@ -37,7 +37,7 @@ def format_admin_stats(statistics): def create_stats_dict(): stats_dict = {} - for template in ['sms', 'email']: # TODO: return to NOTIFICATION_TYPES after removing letters + for template in NOTIFICATION_TYPES: stats_dict[template] = {} for status in ('total', 'test-key'):