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 57c5c4d commit 157ce59Copy full SHA for 157ce59
python_workflow_definition/src/python_workflow_definition/cwl/__main__.py
@@ -9,7 +9,7 @@ def load_function(file_name, funct):
9
module = importlib.util.module_from_spec(spec)
10
sys.modules["workflow"] = module
11
spec.loader.exec_module(module)
12
- return getattr(module, funct)
+ return getattr(module, funct.split(".")[-1])
13
14
15
def convert_argument(arg):
0 commit comments