From 888d41f484cd8fe7ece2470397f350e7a19da295 Mon Sep 17 00:00:00 2001 From: richard-dds Date: Mon, 20 May 2019 10:46:35 -0400 Subject: [PATCH] Formatting --- atst/app.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/atst/app.py b/atst/app.py index ccecd534..351051b1 100644 --- a/atst/app.py +++ b/atst/app.py @@ -254,6 +254,10 @@ def make_mailer(app): app.mailer = mailer.Mailer(mailer_connection, sender) +def make_session_limiter(app, session, config): + app.session_limiter = SessionLimiter(config, session, app.redis) + + def make_notification_sender(app): app.notification_sender = NotificationSender(queue)