diff --git a/app/notifications/process_notifications.py b/app/notifications/process_notifications.py index 68d2784f25..f1ce7573a2 100644 --- a/app/notifications/process_notifications.py +++ b/app/notifications/process_notifications.py @@ -227,7 +227,7 @@ def build_task_params(notification: Notification): If the notification is a high priority SMS, set the retry policy to retry every 25 seconds else fall back to the default retry policy of retrying every 5 minutes. """ - params = {} + params: dict[str, any] = {} params["retry"] = True # Overring the retry policy is only supported for SMS for now; # email support coming later.