diff options
| author | Michael Merickel <michael@merickel.org> | 2019-12-26 13:27:39 -0600 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2019-12-27 17:58:42 -0600 |
| commit | 8854637933df9e7df8940c2f62122c5e61d58219 (patch) | |
| tree | f830240a1c96042b09a9c700e348531ae1e0c26c /tests/test_scripts | |
| parent | c71001eb97ad6fb1520411d15f7625a4897dd332 (diff) | |
| download | pyramid-8854637933df9e7df8940c2f62122c5e61d58219.tar.gz pyramid-8854637933df9e7df8940c2f62122c5e61d58219.tar.bz2 pyramid-8854637933df9e7df8940c2f62122c5e61d58219.zip | |
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 |
