]> 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:47 +0000 (19:44 +0100)
commit3fbbe8d67b8b193dcf715905392b1c8f33e68f35
tree421975a03c8e00a938ca435ed71d0b0a4484fdbd
parentffdbd326bbea8d7d68e08285c50d0da351ebf95a
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
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