]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
make the linter happy
authorFederico Caselli <cfederico87@gmail.com>
Wed, 12 Apr 2023 18:51:41 +0000 (20:51 +0200)
committerFederico Caselli <cfederico87@gmail.com>
Wed, 12 Apr 2023 18:51:41 +0000 (20:51 +0200)
Change-Id: I7104c7cb081c9b61894958cef5d0b4707474994d

doc/build/orm/extensions/associationproxy.rst

index e612ce1bb6c5288e43fe4ee126a93829f2b531f4..036969f37b3d87197f501651ae2730a6b819a82c 100644 (file)
@@ -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):