Skip to content

Commit

Permalink
Add correct default exec_hosts string
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-el committed Oct 4, 2024
1 parent 67d728f commit fe28933
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ert/scheduler/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
@dataclass
class StartedEvent:
iens: int
exec_hosts: str = ""
exec_hosts: str = "-"


@dataclass
class FinishedEvent:
iens: int
returncode: int
exec_hosts: str = ""
exec_hosts: str = "-"


Event = Union[StartedEvent, FinishedEvent]

0 comments on commit fe28933

Please sign in to comment.