diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-11-23 17:44:30 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-11-23 17:44:30 -0500 |
commit | fbec926c4744aa97a48a011939354c8b8f8be566 (patch) | |
tree | e6bbf1ccd37436a4e4eac164bd54d5b1423f308c /lib/sqlalchemy/sql | |
parent | 1c9aa8c046638f90deeadee4d5492c9b6e19f6b2 (diff) | |
download | sqlalchemy-fbec926c4744aa97a48a011939354c8b8f8be566.tar.gz |
flake8 has very courteously referred us to another pyqca project and closed all comments, thank you! I'll get on that right away
pyqca/flake8-import-order does not seem to have a release or a commit
in the past two years, so while I have created an issue and PR [1] [2],
for now vendor our fork so we can get on with things.
Also fix one issue for flake8 6.0
[1] https://github.com/PyCQA/flake8-import-order/issues/189
[2] https://github.com/PyCQA/flake8-import-order/pull/190
Change-Id: I53045f65b8716cceaf2104fccc1d26f80b398fef
References: https://github.com/PyCQA/flake8/issues/1751
Diffstat (limited to 'lib/sqlalchemy/sql')
-rw-r--r-- | lib/sqlalchemy/sql/schema.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/schema.py b/lib/sqlalchemy/sql/schema.py index f76fc447c..f1caf79be 100644 --- a/lib/sqlalchemy/sql/schema.py +++ b/lib/sqlalchemy/sql/schema.py @@ -4997,7 +4997,7 @@ class Index( bind._run_ddl_visitor(ddl.SchemaDropper, self, checkfirst=checkfirst) def __repr__(self) -> str: - exprs: _typing_Sequence[Any] + exprs: _typing_Sequence[Any] # noqa: F842 return "Index(%s)" % ( ", ".join( |