]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix linting issues 11416/head
authorWouter Kayser <wouterkayser@gmail.com>
Thu, 30 May 2024 11:47:52 +0000 (13:47 +0200)
committerWouter Kayser <wouterkayser@gmail.com>
Thu, 30 May 2024 11:47:52 +0000 (13:47 +0200)
test/typing/plain_files/orm/relationship.py

index fe978be7cf307c75259746f1bf14bf697f3558e1..683e347f19f153436759140dae4254e2179fa33e 100644 (file)
@@ -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)))
-
-