Skip to content

Commit b8f6354

Browse files
committed
Fix literal import
1 parent fe70b16 commit b8f6354

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/zarr/group.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,13 @@
55
import logging
66
from collections.abc import Iterator
77
from dataclasses import asdict, dataclass, field, replace
8-
from typing import TYPE_CHECKING, cast, overload
8+
from typing import TYPE_CHECKING, Literal, cast, overload
99

1010
import numpy.typing as npt
1111

12+
if TYPE_CHECKING:
13+
from collections.abc import AsyncGenerator, Iterable
14+
from typing import Any
1215
from zarr.abc.codec import Codec
1316
from zarr.abc.metadata import Metadata
1417
from zarr.abc.store import set_or_delete

0 commit comments

Comments
 (0)