Skip to content

Commit 2e9c8fd

Browse files
authored
make this more flexible
1 parent 105066f commit 2e9c8fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwltool/workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ def receive_output(self, step, outputparms, final_output_callback, jobout, proce
338338
def try_make_job(self, step, final_output_callback, **kwargs):
339339
# type: (WorkflowJobStep, Callable[[Any, Any], Any], bool, bool, **Any) -> Generator
340340

341-
js_console = kwargs["js_console"] or False
341+
js_console = kwargs.get("js_console", False)
342342
debug = kwargs["debug"] or False
343343

344344
inputparms = step.tool["inputs"]

0 commit comments

Comments
 (0)