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 c027262 commit 39b9d56Copy full SHA for 39b9d56
python_workflow_definition/src/python_workflow_definition/pyiron_workflow.py
@@ -274,7 +274,7 @@ def load_workflow_json(file_name: str) -> Workflow:
274
name = fnc.__name__
275
n = function_node(fnc, output_labels=name) # Strictly force single-output
276
nodes[node_dict["id"]] = n
277
- wf.add_child(n)
+ wf.add_child(child=n, label=name)
278
elif node_dict["type"] == "input":
279
input_values[node_dict["id"]] = node_dict["value"]
280
0 commit comments