Skip to content

Commit

Permalink
Fix ruff linter formatting issue in backend
Browse files Browse the repository at this point in the history
  • Loading branch information
haoyangw committed Sep 26, 2024
1 parent 8899402 commit b8c15d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/auth/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class User(Base):

categories: Mapped[list[Category]] = relationship(secondary=user_category_table)
notes: Mapped[list[Note]] = relationship("Note", backref="user")
top_events_period: Mapped[int] = mapped_column(Integer, default = 7)
top_events_period: Mapped[int] = mapped_column(Integer, default=7)


class PasswordReset(Base):
Expand Down

0 comments on commit b8c15d0

Please sign in to comment.