Skip to content

Commit

Permalink
refactor: Update NotificationSnap default values for last_progress - fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Clon1998 committed Aug 2, 2024
1 parent 8947697 commit ff0d7d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mobileraker/data/dtos/mobileraker/notification_config_dto.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,9 @@ def __init__(self,
progress: int = 0,
progress_live_activity: int = 0,
progress_progressbar: int = 0,
last_progress: datetime = datetime.fromisocalendar(1970, 1, 1),
last_progress_live_activity: datetime = datetime.fromisocalendar(1970, 1, 1),
last_progress_progressbar: datetime = datetime.fromisocalendar(1970, 1, 1),
last_progress: datetime = datetime(1970, 1, 1),
last_progress_live_activity: datetime = datetime(1970, 1, 1),
last_progress_progressbar: datetime = datetime(1970, 1, 1),
state: str = '',
m117: str = '',
gcode_response: Optional[str] = None,
Expand Down

0 comments on commit ff0d7d7

Please sign in to comment.