Skip to content

Commit f5f71fa

Browse files
committed
fixup
1 parent 9804446 commit f5f71fa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def test_save(store: Store, n_args: int, n_kwargs: int) -> None:
149149
assert isinstance(array, Array)
150150
assert_array_equal(array[:], data)
151151
else:
152-
save(store, *args, **kwargs)
152+
save(store, *args, **kwargs) # type: ignore[arg-type]
153153
group = open(store)
154154
assert isinstance(group, Group)
155155
for array in group.array_values():
@@ -1023,10 +1023,10 @@ async def test_metadata_validation_error() -> None:
10231023
MetadataValidationError,
10241024
match="Invalid value for 'zarr_format'. Expected '2, 3, or None'. Got '3.0'.",
10251025
):
1026-
await zarr.api.asynchronous.open_group(zarr_format="3.0")
1026+
await zarr.api.asynchronous.open_group(zarr_format="3.0") # type: ignore[arg-type]
10271027

10281028
with pytest.raises(
10291029
MetadataValidationError,
10301030
match="Invalid value for 'zarr_format'. Expected '2, 3, or None'. Got '3.0'.",
10311031
):
1032-
await zarr.api.asynchronous.open_array(shape=(1,), zarr_format="3.0")
1032+
await zarr.api.asynchronous.open_array(shape=(1,), zarr_format="3.0") # type: ignore[arg-type]

0 commit comments

Comments
 (0)