Skip to content

Commit eb4aa28

Browse files
committed
more pre-commit
1 parent 825cdc4 commit eb4aa28

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/zarr/storage/_latency.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
from __future__ import annotations
22

33
import asyncio
4+
from typing import TYPE_CHECKING
45

56
from zarr.abc.store import ByteRequest, Store
6-
from zarr.core.buffer import Buffer, BufferPrototype
77
from zarr.storage._wrapper import WrapperStore
88

9+
if TYPE_CHECKING:
10+
from zarr.core.buffer import Buffer, BufferPrototype
11+
912

1013
class LatencyStore(WrapperStore[Store]):
1114
"""

0 commit comments

Comments
 (0)