chore(quality): apply ruff autofixes and formatting (29 fixes, 41 files reformatted)
This commit is contained in:
@@ -25,11 +25,23 @@ class Account(Base):
|
||||
# Relationships
|
||||
users: Mapped[list["User"]] = relationship("User", back_populates="account")
|
||||
roles: Mapped[list["Role"]] = relationship("Role", back_populates="account")
|
||||
contacts: Mapped[list["Contact"]] = relationship("Contact", back_populates="account")
|
||||
contacts: Mapped[list["Contact"]] = relationship(
|
||||
"Contact", back_populates="account"
|
||||
)
|
||||
tags: Mapped[list["Tag"]] = relationship("Tag", back_populates="account")
|
||||
equipment: Mapped[list["Equipment"]] = relationship("Equipment", back_populates="account")
|
||||
stock_locations: Mapped[list["StockLocation"]] = relationship("StockLocation", back_populates="account")
|
||||
equipment_groups: Mapped[list["EquipmentGroup"]] = relationship("EquipmentGroup", back_populates="account")
|
||||
equipment: Mapped[list["Equipment"]] = relationship(
|
||||
"Equipment", back_populates="account"
|
||||
)
|
||||
stock_locations: Mapped[list["StockLocation"]] = relationship(
|
||||
"StockLocation", back_populates="account"
|
||||
)
|
||||
equipment_groups: Mapped[list["EquipmentGroup"]] = relationship(
|
||||
"EquipmentGroup", back_populates="account"
|
||||
)
|
||||
crew_members: Mapped[list["Crew"]] = relationship("Crew", back_populates="account")
|
||||
vehicles: Mapped[list["Vehicle"]] = relationship("Vehicle", back_populates="account")
|
||||
projects: Mapped[list["Project"]] = relationship("Project", back_populates="account")
|
||||
vehicles: Mapped[list["Vehicle"]] = relationship(
|
||||
"Vehicle", back_populates="account"
|
||||
)
|
||||
projects: Mapped[list["Project"]] = relationship(
|
||||
"Project", back_populates="account"
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user