diff options
| author | Bert JW Regeer <xistence@0x58.com> | 2020-07-12 16:57:45 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-12 16:57:45 -0700 |
| commit | d36be863725aec17573e87e373941cec548290f9 (patch) | |
| tree | 43ab0c4b6db6c05418340e9e18f188e09a02f9ff /tests/test_config/test_actions.py | |
| parent | 5269b28e728a470b94f194bf8febd46278b1f356 (diff) | |
| parent | a920c2530c130688c5d01ed999a43ccf0cb012fa (diff) | |
| download | pyramid-d36be863725aec17573e87e373941cec548290f9.tar.gz pyramid-d36be863725aec17573e87e373941cec548290f9.tar.bz2 pyramid-d36be863725aec17573e87e373941cec548290f9.zip | |
Merge pull request #3604 from Pylons/update-isort
Update isort to 5.x
Diffstat (limited to 'tests/test_config/test_actions.py')
| -rw-r--r-- | tests/test_config/test_actions.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/tests/test_config/test_actions.py b/tests/test_config/test_actions.py index b1f4b4b99..ea6f6cf80 100644 --- a/tests/test_config/test_actions.py +++ b/tests/test_config/test_actions.py @@ -23,9 +23,12 @@ class ActionConfiguratorMixinTests(unittest.TestCase): exception_view=False, ): from zope.interface import Interface - from pyramid.interfaces import IView - from pyramid.interfaces import IViewClassifier - from pyramid.interfaces import IExceptionViewClassifier + + from pyramid.interfaces import ( + IExceptionViewClassifier, + IView, + IViewClassifier, + ) if exception_view: # pragma: no cover classifier = IExceptionViewClassifier @@ -1041,12 +1044,14 @@ class TestActionInfo(unittest.TestCase): def test_class_conforms(self): from zope.interface.verify import verifyClass + from pyramid.interfaces import IActionInfo verifyClass(IActionInfo, self._getTargetClass()) def test_instance_conforms(self): from zope.interface.verify import verifyObject + from pyramid.interfaces import IActionInfo verifyObject(IActionInfo, self._makeOne('f', 0, 'f', 'f')) |
