Skip to content

Commit 41b4253

Browse files
committed
fix: formatting fix
1 parent 8e2b09f commit 41b4253

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/webapp/database.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,10 @@ class ModelTable(Base):
483483
)
484484
inst: Mapped["InstTable"] = relationship(back_populates="models")
485485

486-
jobs: Mapped[Set["JobTable"]] = relationship(back_populates="model", passive_deletes=True,)
486+
jobs: Mapped[Set["JobTable"]] = relationship(
487+
back_populates="model",
488+
passive_deletes=True,
489+
)
487490

488491
name: Mapped[str] = mapped_column(String(VAR_CHAR_STANDARD_LENGTH), nullable=False)
489492
# What configuration of schemas are allowed (list of maps e.g. [PDP Course : 1 + PDP Cohort : 1, X_schema :1 + Y_schema: 2])

0 commit comments

Comments
 (0)