From: Federico Caselli Date: Wed, 12 Apr 2023 18:51:41 +0000 (+0200) Subject: make the linter happy X-Git-Tag: rel_2_0_10~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=107ec58bdfbcbb09f40d92590f8197ffa683a925;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git make the linter happy Change-Id: I7104c7cb081c9b61894958cef5d0b4707474994d --- diff --git a/doc/build/orm/extensions/associationproxy.rst b/doc/build/orm/extensions/associationproxy.rst index e612ce1bb6..036969f37b 100644 --- a/doc/build/orm/extensions/associationproxy.rst +++ b/doc/build/orm/extensions/associationproxy.rst @@ -214,9 +214,7 @@ collection of ``User`` to the ``.keyword`` attribute present on each keywords: AssociationProxy[List[Keyword]] = association_proxy( "user_keyword_associations", "keyword", - creator=lambda keyword_obj: UserKeywordAssociation( - keyword=keyword_obj - ), + creator=lambda keyword_obj: UserKeywordAssociation(keyword=keyword_obj), ) def __init__(self, name: str):