From 56f657de9b2d16343716a533b478de3f45a8bb8f Mon Sep 17 00:00:00 2001 From: Rebecca Law Date: Tue, 16 May 2017 11:04:55 +0100 Subject: [PATCH] fix style --- app/dao/notifications_dao.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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