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 39e16da commit 9c8d51fCopy full SHA for 9c8d51f
changes/3391.feature.rst
@@ -0,0 +1 @@
1
+Make config param optional in init_array
src/zarr/testing/utils.py
@@ -46,4 +46,4 @@ def has_cupy() -> bool:
46
47
# Decorator for GPU tests
48
def gpu_test(func: T) -> T:
49
- return cast("T", gpu_mark(skip_if_no_gpu(func)))
+ return cast(T, gpu_mark(skip_if_no_gpu(func)))
tests/test_api.py
@@ -417,7 +417,6 @@ async def test_init_order_warns() -> None:
417
store_path=StorePath(store=MemoryStore()),
418
shape=(1,),
419
dtype="uint8",
420
- config=None,
421
zarr_format=3,
422
order="F",
423
)
0 commit comments