Skip to content

Commit

Permalink
Fixed flakes
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Mar 2, 2020
1 parent 3b7cc18 commit 837803a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion holoviews/element/graphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def select(self, selection_expr=None, selection_specs=None, selection_mode='edge
if k in self.kdims}
if selection_expr:
mask = selection_expr.apply(self.nodes, compute=False, keep_index=True)
dataset = self.nodes[mask]
nodes = self.nodes[mask]
else:
nodes = self.nodes.select(**dict(selection, **node_selection))
selection = {k: v for k, v in selection.items() if k in dimensions}
Expand Down
1 change: 0 additions & 1 deletion holoviews/plotting/bokeh/chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from bokeh.models.tools import BoxSelectTool
from bokeh.transform import jitter

from ...selection import NoOpSelectionDisplay
from ...core.data import Dataset
from ...core.dimension import dimension_name
from ...core.util import (
Expand Down

0 comments on commit 837803a

Please sign in to comment.