Skip to content

Commit

Permalink
👽 Change MAX Resin num from 240 to 300
Browse files Browse the repository at this point in the history
  • Loading branch information
omg-xtao committed Jan 16, 2025
1 parent 293c68c commit 2df21cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/tools/daily_note.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ class ResinData(TaskDataBase):
@field_validator("notice_num")
@classmethod
def notice_num_validator(cls, v):
if v < 100 or v > 240:
raise ValueError("开拓力提醒数值必须在 100 ~ 240 之间")
if v < 40 or v > 300:
raise ValueError("开拓力提醒数值必须在 40 ~ 300 之间")
return v


Expand Down

0 comments on commit 2df21cd

Please sign in to comment.