Skip to content

Remove ArrayV2 #1857

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: Davis Bennett <davis.v.bennett@gmail.com>
  • Loading branch information
normanrz and d-v-b authored May 9, 2024
commit 2a64c696518f908c227af53bed42a036eb8a62d2
2 changes: 1 addition & 1 deletion src/zarr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ async def open_auto_async(
def open_auto(
store: StoreLike,
runtime_configuration_: RuntimeConfiguration = RuntimeConfiguration(),
) -> Union[Array, Group]:
) -> Array | Group:
object = _sync(
open_auto_async(store, runtime_configuration_),
runtime_configuration_.asyncio_loop,
Expand Down
2 changes: 1 addition & 1 deletion src/zarr/abc/store.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def supports_partial_writes(self) -> bool:
...

@abstractmethod
async def set_partial_values(self, key_start_values: List[Tuple[str, int, BytesLike]]) -> None:
async def set_partial_values(self, key_start_values: list[tuple[str, int, BytesLike]]) -> None:
"""Store values at a given key, starting at byte range_start.

Parameters
Expand Down