diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-05-14 11:13:50 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-05-14 12:28:01 -0400 |
commit | 9f0db34563a05a7b9f6e09110d35ce0d0f36d3a9 (patch) | |
tree | ab407bbcba270696fe7798b043f4521320e19c06 /test/sql/test_operators.py | |
parent | cd628fad7c92f5f54bf1bf6985fd983269b0ec19 (diff) | |
download | sqlalchemy-9f0db34563a05a7b9f6e09110d35ce0d0f36d3a9.tar.gz |
update for flake8-future-imports 0.0.5
a whole bunch of errors were apparently blocked by 0.0.4
being installed.
Fixes: #8020
Change-Id: I22a0faeaabe03de501897893391946d677c2df7e
Diffstat (limited to 'test/sql/test_operators.py')
-rw-r--r-- | test/sql/test_operators.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/sql/test_operators.py b/test/sql/test_operators.py index 186b93c54..6f068159e 100644 --- a/test/sql/test_operators.py +++ b/test/sql/test_operators.py @@ -454,7 +454,6 @@ class MultiElementExprTest(fixtures.TestBase, testing.AssertsCompiledSQL): expr = op(expr, column(f"d{i}")) opstring = compiler.OPERATORS[op] - exprs = opstring.join(f"d{i}" for i in range(num)) if negate: negate_op = { |