Skip to content

Commit

Permalink
Update HistoryExecution model (#627)
Browse files Browse the repository at this point in the history
  • Loading branch information
tetienne authored Oct 5, 2022
1 parent 36fc711 commit 4a0aaf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyoverkiz/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ class HistoryExecution:
owner: str = field(repr=obfuscate_email)
source: str
end_time: int
effective_start_time: int
effective_start_time: int | None = None
duration: int
label: str | None = None
type: str
Expand All @@ -652,7 +652,7 @@ def __init__(
owner: str,
source: str,
end_time: int,
effective_start_time: int,
effective_start_time: int | None = None,
duration: int,
label: str | None = None,
type: str,
Expand Down

0 comments on commit 4a0aaf0

Please sign in to comment.