Skip to content

Commit

Permalink
Compatibility with bokeh 2.2 for CDSCallback (#4568)
Browse files Browse the repository at this point in the history
* Compatibility with bokeh 2.2 for CDSCallback

* Fix flake
  • Loading branch information
philippjfr committed Aug 25, 2020
1 parent 79b8624 commit 265fa84
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions holoviews/plotting/bokeh/callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1169,6 +1169,7 @@ def _process_msg(self, msg):
if isinstance(values, dict):
shape = values.pop('shape', None)
dtype = values.pop('dtype', None)
values.pop('dimension', None)
items = sorted([(int(k), v) for k, v in values.items()])
values = [v for k, v in items]
if dtype is not None:
Expand Down

0 comments on commit 265fa84

Please sign in to comment.