Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
brokkoli71 committed Oct 30, 2024
1 parent b39eec7 commit f5646ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def test_save(store: Store, n_args: int, n_kwargs: int) -> None:
assert isinstance(array, Array)
assert_array_equal(array[:], data)
else:
save(store, *args, zarr_format=None, path=None, **kwargs)
save(store, *args, **kwargs) # type: ignore[arg-type]
group = open(store)
assert isinstance(group, Group)
for array in group.array_values():
Expand Down

0 comments on commit f5646ae

Please sign in to comment.