From 1ac50612e48882554f08951e0072559ead6b2e71 Mon Sep 17 00:00:00 2001 From: Tom White Date: Mon, 13 Jan 2025 09:34:17 +0000 Subject: [PATCH] Fix tooltips for SVGs generated by `visualize()` in Jupyter notebooks (#663) --- cubed/core/plan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cubed/core/plan.py b/cubed/core/plan.py index 64dfd06bf..8bb5ce690 100644 --- a/cubed/core/plan.py +++ b/cubed/core/plan.py @@ -473,7 +473,7 @@ def visualize( import IPython.display as display if format == "svg": - return display.SVG(filename=full_filename) + return display.HTML(filename=full_filename) except ImportError: # Can't return a display object if no IPython. pass