Skip to content

Commit 1ac5061

Browse files
authored
Fix tooltips for SVGs generated by visualize() in Jupyter notebooks (#663)
1 parent 9879944 commit 1ac5061

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cubed/core/plan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ def visualize(
473473
import IPython.display as display
474474

475475
if format == "svg":
476-
return display.SVG(filename=full_filename)
476+
return display.HTML(filename=full_filename)
477477
except ImportError:
478478
# Can't return a display object if no IPython.
479479
pass

0 commit comments

Comments
 (0)