Skip to content

Commit

Permalink
[tmp] More typing edits
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavcs committed Apr 12, 2024
1 parent 42b5b85 commit 6564a4e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/galaxy/model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3725,7 +3725,9 @@ class Quota(Base, Dictifiable, RepresentById):
operation: Mapped[Optional[str]] = mapped_column(String(8))
deleted: Mapped[Optional[bool]] = mapped_column(index=True, default=False)
quota_source_label: Mapped[Optional[str]] = mapped_column(String(32), default=None)
default = relationship("DefaultQuotaAssociation", back_populates="quota", cascade_backrefs=False)
default: Mapped[List["DefaultQuotaAssociation"]] = relationship(
"DefaultQuotaAssociation", back_populates="quota", cascade_backrefs=False
)
groups: Mapped[List["GroupQuotaAssociation"]] = relationship(back_populates="quota")
users: Mapped[List["UserQuotaAssociation"]] = relationship(back_populates="quota")

Expand Down

0 comments on commit 6564a4e

Please sign in to comment.