fix: add missing commas for syntax correctness across multiple files
Test / test (push) Successful in 15s

This commit is contained in:
Artem Kashaev
2025-12-01 16:19:19 +05:00
parent ed6c656963
commit 1039fba571
23 changed files with 52 additions and 52 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ class User(Base):
)
memberships = relationship(
"OrganizationMember", back_populates="user", cascade="all, delete-orphan"
"OrganizationMember", back_populates="user", cascade="all, delete-orphan",
)
owned_contacts = relationship("Contact", back_populates="owner")
owned_deals = relationship("Deal", back_populates="owner")