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