Skip to content
Merged
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
Merge branch 'v3' into chore/drop-py310-np124
  • Loading branch information
jhamman authored Sep 26, 2024
commit f1d0253a95d8db783623b6bde0eb04ad0c7d31cd
7 changes: 5 additions & 2 deletions src/zarr/abc/store.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@
from asyncio import gather
from collections.abc import AsyncGenerator, Iterable
from types import TracebackType
from typing import Any, NamedTuple, Protocol, Self, runtime_checkable
from typing import TYPE_CHECKING, Any, NamedTuple, Protocol, runtime_checkable

from typing_extensions import Self
if TYPE_CHECKING:
from collections.abc import AsyncGenerator, Iterable
from types import TracebackType
from typing import Any, TypeAlias, Self

from zarr.core.buffer import Buffer, BufferPrototype
from zarr.core.common import AccessModeLiteral, BytesLike
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.