Skip to content

Commit

Permalink
revert dask allowed
Browse files Browse the repository at this point in the history
  • Loading branch information
slevang committed Nov 18, 2024
1 parent 90037fe commit 5ba1a2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xarray/core/variable.py
Original file line number Diff line number Diff line change
Expand Up @@ -1638,7 +1638,7 @@ def clip(self, min=None, max=None):
from xarray.core.computation import apply_ufunc

xp = duck_array_ops.get_array_namespace(self.data)
return apply_ufunc(xp.clip, self, min, max, dask="parallelized")
return apply_ufunc(xp.clip, self, min, max, dask="allowed")

def reduce( # type: ignore[override]
self,
Expand Down

0 comments on commit 5ba1a2f

Please sign in to comment.