aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-02-09 12:55:49 +0000
committerGravatar Gareth Coles <[email protected]>2018-02-09 12:55:49 +0000
commitd05bf27fc3d5aa7c533501bad3ede0d636165be8 (patch)
tree0fc904c8295a065038b38b0065d222b73046bb12
parentMake APIView base class not loadable (diff)
Guess who forgot to run snekchek!
-rw-r--r--pysite/base_route.py2
-rw-r--r--pysite/route_manager.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/pysite/base_route.py b/pysite/base_route.py
index 0306e724..65007fcb 100644
--- a/pysite/base_route.py
+++ b/pysite/base_route.py
@@ -1,5 +1,5 @@
# coding=utf-8
-from flask import Blueprint, render_template, jsonify
+from flask import Blueprint, jsonify, render_template
from flask.views import MethodView
from pysite.constants import ErrorCodes
diff --git a/pysite/route_manager.py b/pysite/route_manager.py
index ad2b3603..f175c53b 100644
--- a/pysite/route_manager.py
+++ b/pysite/route_manager.py
@@ -7,7 +7,7 @@ from flask import Blueprint, Flask, abort, g
import rethinkdb
-from pysite.base_route import BaseView, ErrorView, RouteView, APIView
+from pysite.base_route import APIView, BaseView, ErrorView, RouteView
DB_HOST = os.environ.get("RETHINKDB_HOST")
DB_PORT = os.environ.get("RETHINKDB_PORT")