diff options
| author | Michael Merickel <michael@merickel.org> | 2019-12-29 22:44:30 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-29 22:44:30 -0600 |
| commit | cc396692d82441f8142fb14041542ebd2dad6f0a (patch) | |
| tree | b22cabb8d796ba6fecb359f991fcc61299581eb5 /tests/test_scripts | |
| parent | ce48c934046f470f8c32ec98666f484f482f32f0 (diff) | |
| parent | 3006bdc7b9d5590415d15005c755e307ddb588ca (diff) | |
| download | pyramid-cc396692d82441f8142fb14041542ebd2dad6f0a.tar.gz pyramid-cc396692d82441f8142fb14041542ebd2dad6f0a.tar.bz2 pyramid-cc396692d82441f8142fb14041542ebd2dad6f0a.zip | |
Merge pull request #3554 from mmerickel/isort
isort
Diffstat (limited to 'tests/test_scripts')
| -rw-r--r-- | tests/test_scripts/dummy.py | 1 | ||||
| -rw-r--r-- | tests/test_scripts/test_prequest.py | 1 | ||||
| -rw-r--r-- | tests/test_scripts/test_proutes.py | 1 | ||||
| -rw-r--r-- | tests/test_scripts/test_pserve.py | 2 | ||||
| -rw-r--r-- | tests/test_scripts/test_pshell.py | 1 | ||||
| -rw-r--r-- | tests/test_scripts/test_ptweens.py | 1 | ||||
| -rw-r--r-- | tests/test_scripts/test_pviews.py | 1 |
7 files changed, 7 insertions, 1 deletions
diff --git a/tests/test_scripts/dummy.py b/tests/test_scripts/dummy.py index bb3475d39..4a848e043 100644 --- a/tests/test_scripts/dummy.py +++ b/tests/test_scripts/dummy.py @@ -1,4 +1,5 @@ from zope.interface import implementer + from pyramid.interfaces import IMultiView diff --git a/tests/test_scripts/test_prequest.py b/tests/test_scripts/test_prequest.py index aadde719a..2214f6350 100644 --- a/tests/test_scripts/test_prequest.py +++ b/tests/test_scripts/test_prequest.py @@ -1,5 +1,6 @@ from io import StringIO import unittest + from . import dummy diff --git a/tests/test_scripts/test_proutes.py b/tests/test_scripts/test_proutes.py index b5a083272..6ba02a7d4 100644 --- a/tests/test_scripts/test_proutes.py +++ b/tests/test_scripts/test_proutes.py @@ -1,5 +1,6 @@ import os import unittest + from . import dummy diff --git a/tests/test_scripts/test_pserve.py b/tests/test_scripts/test_pserve.py index f19ba81df..7bf962f9e 100644 --- a/tests/test_scripts/test_pserve.py +++ b/tests/test_scripts/test_pserve.py @@ -1,8 +1,8 @@ from io import StringIO import os import unittest -from . import dummy +from . import dummy here = os.path.abspath(os.path.dirname(__file__)) diff --git a/tests/test_scripts/test_pshell.py b/tests/test_scripts/test_pshell.py index 6beaacda6..10a9cd593 100644 --- a/tests/test_scripts/test_pshell.py +++ b/tests/test_scripts/test_pshell.py @@ -1,5 +1,6 @@ import os import unittest + from . import dummy diff --git a/tests/test_scripts/test_ptweens.py b/tests/test_scripts/test_ptweens.py index ee50887f6..808bc64b6 100644 --- a/tests/test_scripts/test_ptweens.py +++ b/tests/test_scripts/test_ptweens.py @@ -1,4 +1,5 @@ import unittest + from . import dummy diff --git a/tests/test_scripts/test_pviews.py b/tests/test_scripts/test_pviews.py index c8d29113f..b462b6f28 100644 --- a/tests/test_scripts/test_pviews.py +++ b/tests/test_scripts/test_pviews.py @@ -1,4 +1,5 @@ import unittest + from . import dummy |
