Skip to content

Commit

Permalink
run black
Browse files Browse the repository at this point in the history
  • Loading branch information
samwaseda committed Jan 6, 2025
1 parent 71ea04a commit 09a09e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyiron_ontology/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def get_inputs_and_outputs(node):
inputs = parse_input_args(node.node_function)
outputs = parse_output_args(node.node_function)
if isinstance(outputs, dict):
outputs = (outputs, )
outputs = (outputs,)
outputs = {key: out for key, out in zip(node.outputs.labels, outputs)}
for key, value in node.inputs.to_value_dict().items():
inputs[key]["value"] = value
Expand All @@ -28,5 +28,5 @@ def get_inputs_and_outputs(node):
"input": inputs,
"output": outputs,
"function": node.node_function.__name__,
"label": node.label
"label": node.label,
}

0 comments on commit 09a09e4

Please sign in to comment.