From: Nick Wilkinson Date: Fri, 6 Dec 2024 06:56:12 +0000 (+0200) Subject: fix linting X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7d996fd92dd24a7d79bccab090d22bd76564dc76;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix linting --- diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py index 5fa217cc09..6b14ace174 100644 --- a/lib/sqlalchemy/dialects/postgresql/base.py +++ b/lib/sqlalchemy/dialects/postgresql/base.py @@ -4603,7 +4603,10 @@ class PGDialect(default.DefaultDialect): dialect_options = {} if row["reloptions"]: dialect_options["postgresql_with"] = dict( - [option.split("=", 1) for option in row["reloptions"]] + [ + option.split("=", 1) + for option in row["reloptions"] + ] ) # it *might* be nice to include that this is 'btree' in the # reflection info. But we don't want an Index object