Skip to content

Commit

Permalink
tune iloc
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyfast authored and philippjfr committed Aug 31, 2020
1 parent 00afd3b commit 8ca55d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions holoviews/core/data/ibis.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ def iloc(cls, dataset, index):
else:
if not isinstance(rows, typing.Iterable):
rows = [rows]
data = data.filter([data.hv_row_id__.isin(rows)]).drop(["hv_row_id__"])
return data
return data.filter([data.hv_row_id__.isin(rows)]).drop(["hv_row_id__"])
return data.drop(["hv_row_id__"])

@classmethod
def unpack_scalar(cls, dataset, data):
Expand Down

0 comments on commit 8ca55d4

Please sign in to comment.