From 654ecfe88c79badb520151c25459dfa6334ad1e5 Mon Sep 17 00:00:00 2001 From: dankrzeminski32 Date: Mon, 24 Jul 2023 14:49:55 -0500 Subject: [PATCH] black formatting --- lib/sqlalchemy/orm/session.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/sqlalchemy/orm/session.py b/lib/sqlalchemy/orm/session.py index 28e4b5cbc6..7c98a9020d 100644 --- a/lib/sqlalchemy/orm/session.py +++ b/lib/sqlalchemy/orm/session.py @@ -880,9 +880,9 @@ class SessionTransaction(_StateChange, TransactionalContext): if session._is_closed: raise sa_exc.InvalidRequestError( - "This Session has been permanently closed and is unable " - "to handle any more transaction requests." - ) + "This Session has been permanently closed and is unable " + "to handle any more transaction requests." + ) if nested: if not parent: @@ -1435,7 +1435,7 @@ class Session(_SessionClassMethods, EventTarget): query_cls: Optional[Type[Query[Any]]] = None, autocommit: Literal[False] = False, join_transaction_mode: JoinTransactionMode = "conditional_savepoint", - close_final: bool = False + close_final: bool = False, ): r"""Construct a new :class:`_orm.Session`. -- 2.47.3