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 1d82339 commit c881268Copy full SHA for c881268
src/zarr/storage/__init__.py
@@ -6,6 +6,7 @@
6
from zarr.errors import ZarrDeprecationWarning
7
from zarr.storage._common import StoreLike, StorePath
8
from zarr.storage._fsspec import FsspecStore
9
+from zarr.storage._latency import LatencyStore
10
from zarr.storage._local import LocalStore
11
from zarr.storage._logging import LoggingStore
12
from zarr.storage._memory import GpuMemoryStore, MemoryStore
@@ -16,6 +17,7 @@
16
17
__all__ = [
18
"FsspecStore",
19
"GpuMemoryStore",
20
+ "LatencyStore",
21
"LocalStore",
22
"LoggingStore",
23
"MemoryStore",
0 commit comments