summaryrefslogtreecommitdiff
path: root/tests/test_predicates.py
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/test_predicates.py
parent4481cfeef8b2fd90a485f2f871e9689750b48220 (diff)
downloadpyramid-a920c2530c130688c5d01ed999a43ccf0cb012fa.tar.gz
pyramid-a920c2530c130688c5d01ed999a43ccf0cb012fa.tar.bz2
pyramid-a920c2530c130688c5d01ed999a43ccf0cb012fa.zip
Run isort 5.x across code base
Diffstat (limited to 'tests/test_predicates.py')
-rw-r--r--tests/test_predicates.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_predicates.py b/tests/test_predicates.py
index 1cc3f4aa5..848afe387 100644
--- a/tests/test_predicates.py
+++ b/tests/test_predicates.py
@@ -453,8 +453,8 @@ class Test_EffectivePrincipalsPredicate(unittest.TestCase):
return EffectivePrincipalsPredicate(val, config)
def _testing_authn_policy(self, userid, groupids=tuple()):
+ from pyramid.authorization import Authenticated, Everyone
from pyramid.interfaces import IAuthenticationPolicy, ISecurityPolicy
- from pyramid.authorization import Everyone, Authenticated
from pyramid.security import LegacySecurityPolicy
class DummyPolicy: