Skip to content

Commit

Permalink
run black
Browse files Browse the repository at this point in the history
  • Loading branch information
samwaseda committed Jan 27, 2025
1 parent 8f13df9 commit 0c83e59
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pyiron_ontology/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,17 @@ def get_triples(
)
elif io_ == "inputs":
graph = _translate_has_value(
graph, label, str(d["value"]), d["value"],
graph,
label,
str(d["value"]),
d["value"],
)
else:
graph = _translate_has_value(
graph, label, label + ".value", d["value"],
graph,
label,
label + ".value",
d["value"],
)
if d.get("connection", None) is not None and io_ == "inputs":
graph.add(
Expand Down

0 comments on commit 0c83e59

Please sign in to comment.