diff options
| author | JC Bohin <jc@bohin.net> | 2016-06-13 17:59:29 +0200 |
|---|---|---|
| committer | JC Bohin <jc@bohin.net> | 2016-06-13 17:59:29 +0200 |
| commit | 47900408a701be8f7d09ef1377186f7b63327cdf (patch) | |
| tree | 2b632e0fd8e8c6c9ca737930c3a2aba61939f8ac /docs/quick_tour | |
| parent | 7b536fa7164530f84683a9daae04c59009691941 (diff) | |
| download | pyramid-47900408a701be8f7d09ef1377186f7b63327cdf.tar.gz pyramid-47900408a701be8f7d09ef1377186f7b63327cdf.tar.bz2 pyramid-47900408a701be8f7d09ef1377186f7b63327cdf.zip | |
Fix flake8's noqa directive in documentation and scaffolds
Diffstat (limited to 'docs/quick_tour')
| -rw-r--r-- | docs/quick_tour/sqla_demo/sqla_demo/models/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/quick_tour/sqla_demo/sqla_demo/models/__init__.py b/docs/quick_tour/sqla_demo/sqla_demo/models/__init__.py index 6ffc10a78..76e0fd26b 100644 --- a/docs/quick_tour/sqla_demo/sqla_demo/models/__init__.py +++ b/docs/quick_tour/sqla_demo/sqla_demo/models/__init__.py @@ -1,7 +1,7 @@ from sqlalchemy.orm import configure_mappers # import all models classes here for sqlalchemy mappers # to pick up -from .mymodel import MyModel # flake8: noqa +from .mymodel import MyModel # noqa # run configure mappers to ensure we avoid any race conditions configure_mappers() |
