Skip to content

Commit

Permalink
Replace < and >
Browse files Browse the repository at this point in the history
  • Loading branch information
fealho committed Nov 7, 2023
1 parent 3e0de8e commit 3f5c327
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions sdv/metadata/visualization.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ def visualize_graph(nodes, edges, filepath=None):
)

for name, label in nodes.items():
label = label.replace('<', 'lt').replace('>', 'gt')
digraph.node(name, label=label)

for parent, child, label in edges:
Expand Down

0 comments on commit 3f5c327

Please sign in to comment.