diff options
author | Federico Caselli <cfederico87@gmail.com> | 2021-02-08 22:12:06 +0100 |
---|---|---|
committer | Federico Caselli <cfederico87@gmail.com> | 2021-03-03 22:38:02 +0100 |
commit | 2afc53804b3c150187fe56e77829ac4f792e2893 (patch) | |
tree | c395708a2c0783584dcb142072572a6b45e1805a /lib/sqlalchemy/future | |
parent | a63b23392fc31766e32b8650127d9006ee189a0f (diff) | |
download | sqlalchemy-2afc53804b3c150187fe56e77829ac4f792e2893.tar.gz |
Ignore flake8 F401 on specific files
Uses the flake8 option per-file-ignores that was introduced in a recent
version of flake8 (3.7.+) to avoid having lots of "noqa" in import
only files
Change-Id: Ib4871d63bad7e578165615df139cbf6093479201
Diffstat (limited to 'lib/sqlalchemy/future')
-rw-r--r-- | lib/sqlalchemy/future/__init__.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqlalchemy/future/__init__.py b/lib/sqlalchemy/future/__init__.py index 4e4054e84..976c20136 100644 --- a/lib/sqlalchemy/future/__init__.py +++ b/lib/sqlalchemy/future/__init__.py @@ -8,10 +8,10 @@ """Future 2.0 API features. """ -from .engine import Connection # noqa -from .engine import create_engine # noqa -from .engine import Engine # noqa -from ..sql.selectable import Select # noqa +from .engine import Connection +from .engine import create_engine +from .engine import Engine +from ..sql.selectable import Select from ..util.langhelpers import public_factory |