diff options
| author | Steve Piercy <web@stevepiercy.com> | 2021-01-08 05:46:23 -0800 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2021-01-08 05:46:23 -0800 |
| commit | f5642a5f212bb852598bc90a0f62311f4b0e7c61 (patch) | |
| tree | 428ca0ffdc76dcaff66e5f51a71fe8aff108548b /docs/tutorials | |
| parent | 1b7e50666374668c16298db8591a4b7b4bf245eb (diff) | |
| download | pyramid-f5642a5f212bb852598bc90a0f62311f4b0e7c61.tar.gz pyramid-f5642a5f212bb852598bc90a0f62311f4b0e7c61.tar.bz2 pyramid-f5642a5f212bb852598bc90a0f62311f4b0e7c61.zip | |
Descramble imports
Diffstat (limited to 'docs/tutorials')
| -rw-r--r-- | docs/tutorials/wiki2/src/tests/tutorial/routes.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/tutorials/wiki2/src/tests/tutorial/routes.py b/docs/tutorials/wiki2/src/tests/tutorial/routes.py index ba484e54d..fb352604d 100644 --- a/docs/tutorials/wiki2/src/tests/tutorial/routes.py +++ b/docs/tutorials/wiki2/src/tests/tutorial/routes.py @@ -1,11 +1,11 @@ -from pyramid.httpexceptions import ( - HTTPNotFound, - HTTPSeeOther, -) from pyramid.authorization import ( Allow, Everyone, ) +from pyramid.httpexceptions import ( + HTTPNotFound, + HTTPSeeOther, +) from . import models |
