From: Miguel Grillo Date: Thu, 24 Oct 2024 13:47:46 +0000 (+0200) Subject: style: fix E501 line too long in base.py. Refactored a line in base.py to comply... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87481b63904f2d3a5157f5f5419db610643524bc;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git style: fix E501 line too long in base.py. Refactored a line in base.py to comply with PEP 8 E501 (line too long) by breaking it into multiple lines. --- diff --git a/lib/sqlalchemy/dialects/oracle/base.py b/lib/sqlalchemy/dialects/oracle/base.py index 18bca4ab0b..f8667c817a 100644 --- a/lib/sqlalchemy/dialects/oracle/base.py +++ b/lib/sqlalchemy/dialects/oracle/base.py @@ -1482,7 +1482,12 @@ class OracleDialect(default.DefaultDialect): construct_arguments = [ ( sa_schema.Table, - {"resolve_synonyms": False, "on_commit": None, "compress": False, "tablespace": None}, + { + "resolve_synonyms": False, + "on_commit": None, + "compress": False, + "tablespace": None + }, ), (sa_schema.Index, {"bitmap": False, "compress": False}), (sa_schema.Sequence, {"order": None}),