aboutsummaryrefslogtreecommitdiffstats
path: root/pysite
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-05-08 11:42:49 +0100
committerGravatar Gareth Coles <[email protected]>2018-05-08 11:42:49 +0100
commitca087ccd9cff146476040c09b3777db2495b992e (patch)
tree35d401ee324d1c8ba08dec1cbe8819b9d78548be /pysite
parentMove bot API key to a constant (diff)
Linting
Diffstat (limited to 'pysite')
-rw-r--r--pysite/decorators.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pysite/decorators.py b/pysite/decorators.py
index befc0869..16d555f0 100644
--- a/pysite/decorators.py
+++ b/pysite/decorators.py
@@ -6,7 +6,7 @@ from schema import Schema, SchemaError
from werkzeug.exceptions import Forbidden
from pysite.base_route import APIView, BaseView
-from pysite.constants import CSRF, DEBUG_MODE, ErrorCodes, ValidationTypes, BOT_API_KEY
+from pysite.constants import BOT_API_KEY, CSRF, DEBUG_MODE, ErrorCodes, ValidationTypes
def csrf(f):