Skip to content

Commit

Permalink
Fix arrows
Browse files Browse the repository at this point in the history
  • Loading branch information
NeilGirdhar committed Nov 30, 2023
1 parent 85ab4e0 commit 7a458c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tjax/_src/graph.py
Original file line number Diff line number Diff line change
@@ -96,7 +96,7 @@ def _(value: nx.Graph,
key: str = '',
batch_dims: BatchDimensions | None = None) -> Tree:
directed = isinstance(value, nx.DiGraph)
arrow = '⟶ ' if directed else '🡘 '
arrow = '⟶' if directed else ''
retval = display_class(key, type(value))
bdi = BatchDimensionIterator(batch_dims)
for name, node in value.nodes.items():

0 comments on commit 7a458c3

Please sign in to comment.