Skip to content

Commit c06fa23

Browse files
Fix multiple identical imports (zarr-developers#2241)
1 parent 1d9658b commit c06fa23

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

src/zarr/core/array.py

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import numpy.typing as npt
1010

1111
from zarr._compat import _deprecate_positional_args
12-
from zarr.abc.codec import Codec, CodecPipeline
1312
from zarr.abc.store import set_or_delete
1413
from zarr.codecs import BytesCodec
1514
from zarr.codecs._v2 import V2Compressor, V2Filters

src/zarr/store/memory.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from __future__ import annotations
22

3-
from collections.abc import AsyncGenerator, MutableMapping
43
from typing import TYPE_CHECKING
54

65
from zarr.abc.store import Store

tests/v3/test_store/test_remote.py

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import json
44
import os
5-
from collections.abc import Generator
65
from typing import TYPE_CHECKING
76

87
import fsspec

0 commit comments

Comments
 (0)