diff options
author | 2018-05-08 11:42:49 +0100 | |
---|---|---|
committer | 2018-05-08 11:42:49 +0100 | |
commit | ca087ccd9cff146476040c09b3777db2495b992e (patch) | |
tree | 35d401ee324d1c8ba08dec1cbe8819b9d78548be | |
parent | Move bot API key to a constant (diff) |
Linting
-rw-r--r-- | pysite/decorators.py | 2 |
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): |