Skip to content

Commit

Permalink
Do not override selected HoloViews renderer
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Jun 19, 2020
1 parent f589266 commit 07c85d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def __call__(self, *args, **params):
if 'holoviews' in sys.modules:
import holoviews as hv
import holoviews.plotting.bokeh # noqa
if not getattr(hv.extension, '_loaded', False):
if hv.Store.current_backend not in hv.Store.renderers:
if hasattr(hv.Store, 'set_current_backend'):
hv.Store.set_current_backend('bokeh')
else:
Expand Down

0 comments on commit 07c85d9

Please sign in to comment.