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/events.py | |
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/events.py')
-rw-r--r-- | lib/sqlalchemy/events.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/sqlalchemy/events.py b/lib/sqlalchemy/events.py index 2d7f4fcbd..3087c1b0f 100644 --- a/lib/sqlalchemy/events.py +++ b/lib/sqlalchemy/events.py @@ -7,8 +7,8 @@ """Core event interfaces.""" -from .engine.events import ConnectionEvents # noqa -from .engine.events import DialectEvents # noqa -from .pool.events import PoolEvents # noqa -from .sql.base import SchemaEventTarget # noqa -from .sql.events import DDLEvents # noqa +from .engine.events import ConnectionEvents +from .engine.events import DialectEvents +from .pool.events import PoolEvents +from .sql.base import SchemaEventTarget +from .sql.events import DDLEvents |