diff options
author | 2018-04-01 23:17:34 +0100 | |
---|---|---|
committer | 2018-04-01 23:17:34 +0100 | |
commit | 5b34bca35fac23d5ecd98072769c7a4edb4a4546 (patch) | |
tree | f691b35eef76996181c4e63722850b2247d20b59 /pysite | |
parent | Add CSRF protection and optimise imports (diff) |
Linting
Diffstat (limited to 'pysite')
-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 d678a8b4..653489b4 100644 --- a/pysite/decorators.py +++ b/pysite/decorators.py @@ -8,7 +8,7 @@ from schema import Schema, SchemaError from werkzeug.exceptions import Forbidden from pysite.base_route import APIView, BaseView -from pysite.constants import ErrorCodes, ValidationTypes, CSRF +from pysite.constants import CSRF, ErrorCodes, ValidationTypes def csrf(f): |