Skip to content

Commit 36aab33

Browse files
committed
freshen cwltool/procgenerator.py
1 parent fa71a8f commit 36aab33

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cwltool/procgenerator.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import copy
22
from typing import (
3-
Any,
43
Callable,
54
Dict,
65
Generator,
@@ -129,7 +128,7 @@ def result(
129128
)
130129

131130
if "runInputs" in jobout:
132-
runinputs = cast(MutableMapping[str, Any], jobout["runInputs"])
131+
runinputs = cast(CWLObjectType, jobout["runInputs"])
133132
else:
134133
runinputs = copy.deepcopy(job_order)
135134
for i in self.embedded_tool.tool["inputs"]:

0 commit comments

Comments
 (0)