]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
remove unnecessary string concat in same line
authorFederico Caselli <cfederico87@gmail.com>
Tue, 6 Feb 2024 18:44:47 +0000 (19:44 +0100)
committerFederico Caselli <cfederico87@gmail.com>
Tue, 6 Feb 2024 18:44:59 +0000 (19:44 +0100)
commiteb2cf783855477a6d0808a318b1ce039b28e52a0
tree896ea29bcc3d91b6a87ff5acf506c8f550717a13
parent5e96a4cabb268a03816e25b603c17c33d719915d
remove unnecessary string concat in same line

manually update the files to remove literal string concat on the same line,
since black does not seem to be making progress in handling these

Change-Id: I3c651374c5f3db5b8bc0c700328d67ca03743b7b
(cherry picked from commit 3fbbe8d67b8b193dcf715905392b1c8f33e68f35)
58 files changed:
doc/build/changelog/migration_11.rst
doc/build/orm/join_conditions.rst
lib/sqlalchemy/dialects/oracle/base.py
lib/sqlalchemy/engine/cursor.py
lib/sqlalchemy/ext/associationproxy.py
lib/sqlalchemy/inspection.py
lib/sqlalchemy/orm/interfaces.py
lib/sqlalchemy/orm/relationships.py
lib/sqlalchemy/orm/strategies.py
lib/sqlalchemy/orm/util.py
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/sql/default_comparator.py
lib/sqlalchemy/sql/schema.py
lib/sqlalchemy/testing/plugin/plugin_base.py
lib/sqlalchemy/testing/suite/test_rowcount.py
lib/sqlalchemy/util/langhelpers.py
test/dialect/mssql/test_compiler.py
test/dialect/mssql/test_query.py
test/dialect/mysql/test_compiler.py
test/dialect/mysql/test_types.py
test/dialect/oracle/test_compiler.py
test/dialect/oracle/test_dialect.py
test/dialect/postgresql/test_compiler.py
test/dialect/postgresql/test_dialect.py
test/dialect/postgresql/test_query.py
test/dialect/test_sqlite.py
test/engine/test_parseconnect.py
test/engine/test_transaction.py
test/orm/declarative/test_basic.py
test/orm/declarative/test_mixin.py
test/orm/dml/test_bulk.py
test/orm/inheritance/test_basic.py
test/orm/test_bind.py
test/orm/test_core_compilation.py
test/orm/test_cycles.py
test/orm/test_deprecations.py
test/orm/test_events.py
test/orm/test_mapper.py
test/orm/test_options.py
test/orm/test_query.py
test/orm/test_selectin_relations.py
test/orm/test_unitofwork.py
test/orm/test_unitofworkv2.py
test/perf/orm2010.py
test/requirements.py
test/sql/test_compiler.py
test/sql/test_constraints.py
test/sql/test_cte.py
test/sql/test_deprecations.py
test/sql/test_external_traversal.py
test/sql/test_insert.py
test/sql/test_lambdas.py
test/sql/test_metadata.py
test/sql/test_operators.py
test/sql/test_quote.py
test/sql/test_resultset.py
test/sql/test_text.py
test/sql/test_types.py