Skip to content

Commit

Permalink
Fixed bokeh tool initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Oct 12, 2016
1 parent f75b1e9 commit cde3efa
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 @@ -219,7 +219,7 @@ def _init_tools(self, element, callbacks=[]):

tools = [t for t in cb_tools + self.default_tools + self.tools
if t not in tool_names]
if 'hover' in tools+tool_names:
if 'hover' in tools:
tools[tools.index('hover')] = HoverTool(tooltips=tooltips)
return tools

Expand Down

0 comments on commit cde3efa

Please sign in to comment.