Skip to content

Commit 92f3905

Browse files
GlassOfWhiskeymr-c
andauthored
Update cwltool/workflow_job.py
Fixed `_completed` attribute type Co-authored-by: Michael R. Crusoe <[email protected]>
1 parent 6529869 commit 92f3905

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwltool/workflow_job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def __init__(
8888
) -> None:
8989
"""Initialize."""
9090
self.dest = dest
91-
self._completed = set()
91+
self._completed: Set[int] = set()
9292
self.processStatus = "success"
9393
self.total = total
9494
self.output_callback = output_callback

0 commit comments

Comments
 (0)