Skip to content

Commit 9a2ae39

Browse files
committed
fix imports
1 parent c06467c commit 9a2ae39

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/zarr/testing/store.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
from abc import abstractmethod
66
from typing import TYPE_CHECKING, Generic, TypeVar
77

8-
from zarr.storage import ObjectStore, WrapperStore
8+
from zarr.storage import WrapperStore
9+
from zarr.storage.obstore import ObjectStore
910

1011
if TYPE_CHECKING:
1112
from typing import Any

tests/test_store/test_object.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from obstore.store import LocalStore, MemoryStore
88

99
from zarr.core.buffer import Buffer, cpu
10-
from zarr.storage import ObjectStore
10+
from zarr.storage.obstore import ObjectStore
1111
from zarr.testing.store import StoreTests
1212

1313

0 commit comments

Comments
 (0)