Skip to content

Commit

Permalink
fix(graphviz): ensure all lines are left-justified
Browse files Browse the repository at this point in the history
  • Loading branch information
deepyaman committed Feb 4, 2025
1 parent 1d889ec commit de1b8da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/expr/visualize.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def get_label(node):
else:
label_fmt = '<<B>{}</B><BR ALIGN="LEFT" />:: {}>'
label = label_fmt.format(escape(name), typename)
return label
return rf"{label}\l"


DEFAULT_NODE_ATTRS = {"shape": "box", "fontname": "Deja Vu Sans Mono"}
Expand Down

0 comments on commit de1b8da

Please sign in to comment.