Skip to content

Commit

Permalink
Make time_remaining Optional
Browse files Browse the repository at this point in the history
  • Loading branch information
ljcornel committed Mar 26, 2024
1 parent 5f4cfee commit f4ea653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geti_sdk/data_models/status.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class StatusSummary:
"""

progress: float
time_remaining: float
time_remaining: Optional[float] = None # Deprecated in Geti v1.16
message: Optional[str] = None

def __attrs_post_init__(self):
Expand Down

0 comments on commit f4ea653

Please sign in to comment.