Skip to content

Commit

Permalink
Nit change
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Dec 20, 2023
1 parent 7ef8c6c commit 5fc5e73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/core/data/dask.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def _select_mask_neighbor(cls, dataset, selection):
"""
mask = cls.select_mask(dataset, selection)
mask = mask.to_dask_array().compute_chunk_sizes()
extra = (mask[1:] ^ mask[:-1])
extra = mask[1:] ^ mask[:-1]
mask[1:] |= extra
mask[:-1] |= extra
return mask
Expand Down

0 comments on commit 5fc5e73

Please sign in to comment.