From de1b8da897321edebe9abcc03018fd30e1424787 Mon Sep 17 00:00:00 2001 From: Deepyaman Datta Date: Mon, 3 Feb 2025 18:35:54 -0700 Subject: [PATCH] fix(graphviz): ensure all lines are left-justified --- ibis/expr/visualize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ibis/expr/visualize.py b/ibis/expr/visualize.py index e3a5cdffd483..ec826281577f 100644 --- a/ibis/expr/visualize.py +++ b/ibis/expr/visualize.py @@ -83,7 +83,7 @@ def get_label(node): else: label_fmt = '<{}
:: {}>' label = label_fmt.format(escape(name), typename) - return label + return rf"{label}\l" DEFAULT_NODE_ATTRS = {"shape": "box", "fontname": "Deja Vu Sans Mono"}