Skip to content

Commit de1b8da

Browse files
committed
fix(graphviz): ensure all lines are left-justified
1 parent 1d889ec commit de1b8da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ibis/expr/visualize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def get_label(node):
8383
else:
8484
label_fmt = '<<B>{}</B><BR ALIGN="LEFT" />:: {}>'
8585
label = label_fmt.format(escape(name), typename)
86-
return label
86+
return rf"{label}\l"
8787

8888

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

0 commit comments

Comments
 (0)