Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions nextflow/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ class Execution:
stdout: str
stderr: str
return_code: str
started: datetime
finished: datetime
started: datetime | None
finished: datetime | None
command: str
log: str
path: str
Expand Down Expand Up @@ -74,8 +74,8 @@ class ProcessExecution:
return_code: str
bash: str
submitted: datetime
started: datetime
finished: datetime
started: datetime | None
finished: datetime | None
status: str
cached: bool
io: Any
Expand Down