From 3d9e499696823c3c755a0f489cc623279075214b Mon Sep 17 00:00:00 2001 From: stvnrlly Date: Tue, 14 Mar 2023 15:01:10 -0400 Subject: [PATCH] remove extra comment --- app/notifications/validators.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/notifications/validators.py b/app/notifications/validators.py index d99ffb226..262dfbe4d 100644 --- a/app/notifications/validators.py +++ b/app/notifications/validators.py @@ -78,7 +78,6 @@ def check_application_over_daily_message_total(key_type, service): if key_type == KEY_TYPE_TEST or not current_app.config['REDIS_ENABLED']: return 0 - # cache_key = daily_total_cache_key() cache_key = daily_total_cache_key() daily_message_limit = current_app.config['DAILY_MESSAGE_LIMIT'] total_stats = redis_store.get(cache_key)