Skip to content

Commit 2132958

Browse files
committed
fix mypy
1 parent 478adbb commit 2132958

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -883,7 +883,7 @@ async def test_nbytes(
883883
assert arr.nbytes == np.prod(arr.shape) * arr.dtype.itemsize
884884

885885

886-
async def test_scalar_array():
886+
async def test_scalar_array() -> None:
887887
arr = zarr.array(1.5)
888888
assert arr[...] == 1.5
889889
assert arr[()] == 1.5

0 commit comments

Comments
 (0)