We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8024cb commit fd16f40Copy full SHA for fd16f40
cwltool/workflow_job.py
@@ -633,7 +633,7 @@ def postScatterEval(io: CWLObjectType) -> CWLObjectType | None:
633
634
fs_access = getdefault(runtimeContext.make_fs_access, StdFsAccess)("")
635
for k, v in io.items():
636
- if k in loadContents:
+ if k in loadContents and v is not None:
637
val = cast(CWLObjectType, v)
638
if val.get("contents") is None:
639
with fs_access.open(cast(str, val["location"]), "rb") as f:
0 commit comments