We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 825cdc4 commit eb4aa28Copy full SHA for eb4aa28
1 file changed
src/zarr/storage/_latency.py
@@ -1,11 +1,14 @@
1
from __future__ import annotations
2
3
import asyncio
4
+from typing import TYPE_CHECKING
5
6
from zarr.abc.store import ByteRequest, Store
-from zarr.core.buffer import Buffer, BufferPrototype
7
from zarr.storage._wrapper import WrapperStore
8
9
+if TYPE_CHECKING:
10
+ from zarr.core.buffer import Buffer, BufferPrototype
11
+
12
13
class LatencyStore(WrapperStore[Store]):
14
"""
0 commit comments