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 179df12 commit 8c34f4eCopy full SHA for 8c34f4e
cwltool/draft2tool.py
@@ -174,7 +174,7 @@ class CommandLineTool(Process):
174
def __init__(self, toolpath_object, **kwargs):
175
# type: (Dict[Text, Any], **Any) -> None
176
super(CommandLineTool, self).__init__(toolpath_object, **kwargs)
177
- self.find_default_container = kwargs["find_default_container"]
+ self.find_default_container = kwargs.get("find_default_container", None)
178
179
def makeJobRunner(self, use_container=True): # type: (Optional[bool]) -> JobBase
180
dockerReq, _ = self.get_requirement("DockerRequirement")
0 commit comments