Skip to content

Commit 48e4d03

Browse files
committed
fix stale import
1 parent 4363092 commit 48e4d03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/zarr/api/asynchronous.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
from zarr.abc.numcodec import Numcodec
5757
from zarr.core.buffer import NDArrayLikeOrScalar
5858
from zarr.core.chunk_key_encodings import ChunkKeyEncoding
59-
from zarr.core.metadata.v2 import CompressorLikev2
59+
from zarr.core.metadata.v2 import CompressorLike_V2
6060
from zarr.storage import StoreLike
6161

6262
# TODO: this type could use some more thought
@@ -131,7 +131,7 @@ class _LikeArgs(TypedDict):
131131
dtype: NotRequired[np.dtype[np.generic]]
132132
order: NotRequired[Literal["C", "F"]]
133133
filters: NotRequired[tuple[Numcodec, ...] | None]
134-
compressor: NotRequired[CompressorLikev2]
134+
compressor: NotRequired[CompressorLike_V2]
135135
codecs: NotRequired[tuple[Codec, ...]]
136136

137137

0 commit comments

Comments
 (0)