Skip to content

Commit

Permalink
Merge pull request #835 from ioam/empty_frame_fix
Browse files Browse the repository at this point in the history
Fix for bokeh plot updates when frame is empty
  • Loading branch information
jlstevens authored Aug 30, 2016
2 parents 3e4a538 + 320767f commit 8b2f1a9
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 8b2f1a9

Please sign in to comment.