Skip to content

Commit

Permalink
Avoid unncessary casting after MultiInterface.iloc (#4176)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr authored Jan 9, 2020
1 parent 50a08d3 commit 6ba6709
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/core/data/multipath.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ def iloc(cls, dataset, index):
new_data = []
for d in geoms:
template.data = d
new_data.append(template.iloc[:, cols])
new_data.append(template.iloc[:, cols].data)
return new_data

count = 0
Expand Down

0 comments on commit 6ba6709

Please sign in to comment.