Skip to content

Commit fa500fd

Browse files
committed
fix syntax
1 parent 6adab90 commit fa500fd

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
@@ -18,7 +18,7 @@ def _get_value(result_dict, nodes_new_dict, link_dict, exe):
1818
if source_handle is None:
1919
return result
2020
else:
21-
return exe.submit(getattr, result, source_handle)
21+
return exe.submit(fn=getattr, object=result, name=source_handle)
2222

2323

2424
def load_workflow_json(file_name, exe):

0 commit comments

Comments
 (0)