Skip to content

Commit

Permalink
Avoid erroring if no axes in bokeh plot handles
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Jan 30, 2017
1 parent 3773a05 commit 6a08b6b
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 @@ -790,7 +790,7 @@ def current_handles(self):

for ax in 'xy':
key = '%s_range' % ax
if isinstance(self.handles[key], FactorRange):
if isinstance(self.handles.get(key), FactorRange):
handles.append(self.handles[key])

if self.current_frame:
Expand Down

0 comments on commit 6a08b6b

Please sign in to comment.