Skip to content

Commit

Permalink
fix!: Fix weekday to comply with Python standard
Browse files Browse the repository at this point in the history
  • Loading branch information
seriaati committed Jun 16, 2024
1 parent 03201a9 commit 409f810
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hoyo_buddy/db/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ class NotesNotify(Model):
notify_time: fields.Field[int | None] = fields.SmallIntField(null=True)
"""X hour before server resets. For dailies, resin discount, and echo of war."""
notify_weekday: fields.Field[int | None] = fields.SmallIntField(null=True)
"""For resin discount and echo of war."""
"""For resin discount and echo of war, 1~7, 1 is Monday."""

class Meta:
unique_together = ("type", "account")
Expand Down

0 comments on commit 409f810

Please sign in to comment.