From 7d996fd92dd24a7d79bccab090d22bd76564dc76 Mon Sep 17 00:00:00 2001 From: Nick Wilkinson Date: Fri, 6 Dec 2024 08:56:12 +0200 Subject: [PATCH] fix linting --- lib/sqlalchemy/dialects/postgresql/base.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 -- 2.47.3