Skip to content

Commit 92e7988

Browse files
authored
Update executorlib.py
1 parent 8d5907f commit 92e7988

File tree

1 file changed

+1
-1
lines changed
  • python_workflow_definition/src/python_workflow_definition

1 file changed

+1
-1
lines changed

python_workflow_definition/src/python_workflow_definition/executorlib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def load_workflow_json(file_name: str, exe: Executor):
7272
)
7373
for k, v in lst[1].items()
7474
}
75-
result_dict[lst[0]] = exe.submit(node, **kwargs)
75+
result_dict[lst[0]] = exe.submit(fn=node, **kwargs)
7676
last_key = lst[0]
7777

7878
return result_dict[last_key]

0 commit comments

Comments
 (0)