Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/hotfixes' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
fit-alessandro-berti committed Nov 13, 2023
2 parents 5d49364 + 28f8912 commit 218ac4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pm4py/objects/conversion/ocel/variants/ocel_to_nx.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,6 @@ def apply(ocel: OCEL, parameters: Optional[Dict[Any, Any]] = None) -> nx.DiGraph
change_dict = copy(object_changes[i])
change_dict["type"] = "CHANGE"
G.add_node(change_id, attr=change_dict)
G.add_edge(change_id, object_changes[i][ocel.object_id_column])
G.add_edge(change_id, object_changes[i][ocel.object_id_column], attr={"type": "CHANGE"})

return G

0 comments on commit 218ac4a

Please sign in to comment.