Skip to content

Commit

Permalink
Run black
Browse files Browse the repository at this point in the history
  • Loading branch information
maximusunc committed Dec 14, 2023
1 parent f6fd30b commit 815ab8d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion reasoner_pydantic/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,9 @@ def _update_kg_edge_ids(self, update_func: Callable):
auxiliary_graph.edges.add(new_edge_id)
edge_id_mapping[new_edge_id] = new_edge_id
except KeyError:
raise Exception(f"Aux graph edge id {aux_edge} not found in edge id mapping")
raise Exception(
f"Aux graph edge id {aux_edge} not found in edge id mapping"
)
if edges_len != edges_num:
raise Exception("Missed an aux graph edge normalization.")
else:
Expand Down

0 comments on commit 815ab8d

Please sign in to comment.