Skip to content

Commit

Permalink
Fix for bokeh plot updates when frame is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Aug 30, 2016
1 parent a987ec9 commit 320767f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/bokeh/element.py
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ def current_handles(self):
return handles

previous_id = self.handles.get('previous_id', None)
current_id = id(self.current_frame.data)
current_id = id(self.current_frame.data) if self.current_frame else None
for handle in self._update_handles:
if (handle == 'source' and self.dynamic and
current_id == previous_id):
Expand Down

0 comments on commit 320767f

Please sign in to comment.