aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/route_manager.py
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-05-15 14:56:08 +0100
committerGravatar Gareth Coles <[email protected]>2018-05-15 14:56:08 +0100
commitb64fbc2dc0aacaa57a0f86e2228b2e040ff088d8 (patch)
tree6c2d9a23eabe13f3709df9e09b83a4c8aa9d27a5 /pysite/route_manager.py
parentAdd RedirectView class for views that only redirect elsewhere (diff)
Linting
Diffstat (limited to 'pysite/route_manager.py')
-rw-r--r--pysite/route_manager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pysite/route_manager.py b/pysite/route_manager.py
index ef992113..eacd74b4 100644
--- a/pysite/route_manager.py
+++ b/pysite/route_manager.py
@@ -8,7 +8,7 @@ from flask_dance.contrib.discord import make_discord_blueprint
from flask_sockets import Sockets
from gunicorn_config import _when_ready as when_ready
-from pysite.base_route import APIView, BaseView, ErrorView, RouteView, TemplateView, RedirectView
+from pysite.base_route import APIView, BaseView, ErrorView, RedirectView, RouteView, TemplateView
from pysite.constants import (
CSRF, DEBUG_MODE, DISCORD_OAUTH_AUTHORIZED, DISCORD_OAUTH_ID, DISCORD_OAUTH_REDIRECT,
DISCORD_OAUTH_SCOPE, DISCORD_OAUTH_SECRET, PREFERRED_URL_SCHEME)