summaryrefslogtreecommitdiff
path: root/tests/pkgs/defpermbugapp
diff options
context:
space:
mode:
authorBert JW Regeer <bertjw@regeer.org>2020-07-12 16:52:48 -0700
committerBert JW Regeer <bertjw@regeer.org>2020-07-12 16:52:48 -0700
commita920c2530c130688c5d01ed999a43ccf0cb012fa (patch)
tree43ab0c4b6db6c05418340e9e18f188e09a02f9ff /tests/pkgs/defpermbugapp
parent4481cfeef8b2fd90a485f2f871e9689750b48220 (diff)
downloadpyramid-a920c2530c130688c5d01ed999a43ccf0cb012fa.tar.gz
pyramid-a920c2530c130688c5d01ed999a43ccf0cb012fa.tar.bz2
pyramid-a920c2530c130688c5d01ed999a43ccf0cb012fa.zip
Run isort 5.x across code base
Diffstat (limited to 'tests/pkgs/defpermbugapp')
-rw-r--r--tests/pkgs/defpermbugapp/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pkgs/defpermbugapp/__init__.py b/tests/pkgs/defpermbugapp/__init__.py
index fe8611870..d7536b547 100644
--- a/tests/pkgs/defpermbugapp/__init__.py
+++ b/tests/pkgs/defpermbugapp/__init__.py
@@ -20,8 +20,8 @@ def z_view(request):
def includeme(config):
- from pyramid.authorization import ACLAuthorizationPolicy
from pyramid.authentication import AuthTktAuthenticationPolicy
+ from pyramid.authorization import ACLAuthorizationPolicy
authn_policy = AuthTktAuthenticationPolicy('seekt1t', hashalg='sha512')
authz_policy = ACLAuthorizationPolicy()