From: Wouter Kayser Date: Thu, 30 May 2024 11:47:52 +0000 (+0200) Subject: fix linting issues X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed8d0edebb6b84b9dcffcf24c52f113c37e7fedd;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix linting issues --- diff --git a/test/typing/plain_files/orm/relationship.py b/test/typing/plain_files/orm/relationship.py index fe978be7cf..683e347f19 100644 --- a/test/typing/plain_files/orm/relationship.py +++ b/test/typing/plain_files/orm/relationship.py @@ -127,7 +127,7 @@ class Team(Base): class Engineer(Employee): engineer_info: Mapped[str] - __mapper_args__ = {"polymorphic_identity": "engineer",} + __mapper_args__ = {"polymorphic_identity": "engineer"} if typing.TYPE_CHECKING: @@ -226,5 +226,3 @@ with Session(e) as s: s.execute(select(B).options(joinedload(B.a7))) s.execute(select(B).options(joinedload(B.a8))) s.execute(select(B).options(joinedload(B.a9))) - -