Skip to content

Commit

Permalink
Fixed scalar issue
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Dec 10, 2019
1 parent 04e4dd9 commit ec4bafc
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 @@ -392,7 +392,7 @@ def add_dimension(cls, dataset, dimension, dim_pos, values, vdim):
@classmethod
def iloc(cls, dataset, index):
rows, cols = index
scalar = False
scalar = np.isscalar(cols) and np.isscalar(rows)

template = cls._inner_dataset_template(dataset)
if cls.geom_type(type(dataset)) != 'Point':
Expand Down

0 comments on commit ec4bafc

Please sign in to comment.