Skip to content

Commit

Permalink
Disable simple id in Notebook (#6367)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro authored Aug 29, 2024
1 parent 6a96433 commit c233dd1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions holoviews/ipython/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from unittest import SkipTest

import param
from bokeh.settings import settings as bk_settings
from IPython.core.completer import IPCompleter
from IPython.display import HTML, publish_display_data
from param import ipython as param_ext
Expand Down Expand Up @@ -164,6 +165,7 @@ def __call__(self, *args, **params):
Store.set_display_hook('html+js', LabelledData, pprint_display)
Store.set_display_hook('png', LabelledData, png_display)
Store.set_display_hook('svg', LabelledData, svg_display)
bk_settings.simple_ids.set_value(False)
notebook_extension._loaded = True

css = ''
Expand Down

0 comments on commit c233dd1

Please sign in to comment.