We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 056398e commit 804cf12Copy full SHA for 804cf12
src/zarr/api/asynchronous.py
@@ -244,7 +244,7 @@ async def load(
244
245
obj = await open(store=store, path=path, zarr_format=zarr_format)
246
if isinstance(obj, AsyncArray):
247
- return await obj.getitem(...)
+ return await obj.getitem(slice(None))
248
else:
249
raise NotImplementedError("loading groups not yet supported")
250
@@ -408,7 +408,7 @@ async def save_array(
408
chunks=chunks,
409
**kwargs,
410
)
411
- await new.setitem(..., arr)
+ await new.setitem(slice(None), arr)
412
413
414
async def save_group(
@@ -520,7 +520,7 @@ async def array(
520
z = await create(**kwargs)
521
522
# fill with data
523
- await z.setitem(..., data)
+ await z.setitem(slice(None), data)
524
525
return z
526
0 commit comments