summaryrefslogtreecommitdiff
path: root/tests/pkgs/notfoundview
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2019-12-29 22:44:30 -0600
committerGitHub <noreply@github.com>2019-12-29 22:44:30 -0600
commitcc396692d82441f8142fb14041542ebd2dad6f0a (patch)
treeb22cabb8d796ba6fecb359f991fcc61299581eb5 /tests/pkgs/notfoundview
parentce48c934046f470f8c32ec98666f484f482f32f0 (diff)
parent3006bdc7b9d5590415d15005c755e307ddb588ca (diff)
downloadpyramid-cc396692d82441f8142fb14041542ebd2dad6f0a.tar.gz
pyramid-cc396692d82441f8142fb14041542ebd2dad6f0a.tar.bz2
pyramid-cc396692d82441f8142fb14041542ebd2dad6f0a.zip
Merge pull request #3554 from mmerickel/isort
isort
Diffstat (limited to 'tests/pkgs/notfoundview')
-rw-r--r--tests/pkgs/notfoundview/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pkgs/notfoundview/__init__.py b/tests/pkgs/notfoundview/__init__.py
index f606ec671..0eec3192c 100644
--- a/tests/pkgs/notfoundview/__init__.py
+++ b/tests/pkgs/notfoundview/__init__.py
@@ -1,5 +1,5 @@
-from pyramid.view import notfound_view_config, view_config
from pyramid.response import Response
+from pyramid.view import notfound_view_config, view_config
@notfound_view_config(route_name='foo', append_slash=True)