Skip to content

Commit 2267138

Browse files
committed
Fix dask_array -> dask
1 parent fd28ff1 commit 2267138

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: xarray/core/ops.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def fillna(data, other, join="left", dataset_join="left"):
148148

149149
return apply_ufunc(duck_array_ops.fillna, data, other,
150150
join=join,
151-
dask_array="allowed",
151+
dask="allowed",
152152
dataset_join=dataset_join,
153153
dataset_fill_value=np.nan,
154154
keep_attrs=True)
@@ -176,7 +176,7 @@ def where_method(self, cond, other=dtypes.NA):
176176
self, cond, other,
177177
join=join,
178178
dataset_join=join,
179-
dask_array='allowed',
179+
dask='allowed',
180180
keep_attrs=True)
181181

182182

0 commit comments

Comments
 (0)