diff --git a/app/dao/notifications_dao.py b/app/dao/notifications_dao.py index 91f8cc774..ab310705f 100644 --- a/app/dao/notifications_dao.py +++ b/app/dao/notifications_dao.py @@ -473,5 +473,6 @@ def dao_created_scheduled_notification(scheduled_notification): @statsd(namespace="dao") def dao_get_scheduled_notifications(): - scheduled_notifications = ScheduledNotification.query.filter(ScheduledNotification.scheduled_for < datetime.utcnow()).all() + scheduled_notifications = ScheduledNotification.query.filter( + ScheduledNotification.scheduled_for < datetime.utcnow()).all() return scheduled_notifications