Skip to content

Commit f5646ae

Browse files
committed
fix typing
1 parent b39eec7 commit f5646ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_api.py

Lines changed: 1 addition & 1 deletion
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, zarr_format=None, path=None, **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():

0 commit comments

Comments
 (0)