Skip to content

Commit bda158a

Browse files
zarr.store → zarr.storage (#2523)
Also discard commented out code. Code commented out without a comment doesn't help. The reason here was circular imports.
1 parent 44bcd16 commit bda158a

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/zarr/api/asynchronous.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -653,12 +653,12 @@ async def open_group(
653653
Store or path to directory in file system or name of zip file.
654654
655655
Strings are interpreted as paths on the local file system
656-
and used as the ``root`` argument to :class:`zarr.store.LocalStore`.
656+
and used as the ``root`` argument to :class:`zarr.storage.LocalStore`.
657657
658658
Dictionaries are used as the ``store_dict`` argument in
659-
:class:`zarr.store.MemoryStore``.
659+
:class:`zarr.storage.MemoryStore``.
660660
661-
By default (``store=None``) a new :class:`zarr.store.MemoryStore`
661+
By default (``store=None``) a new :class:`zarr.storage.MemoryStore`
662662
is created.
663663
664664
mode : {'r', 'r+', 'a', 'w', 'w-'}, optional

src/zarr/storage/common.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
from zarr.storage.local import LocalStore
1313
from zarr.storage.memory import MemoryStore
1414

15-
# from zarr.store.remote import RemoteStore
16-
1715
if TYPE_CHECKING:
1816
from zarr.core.buffer import BufferPrototype
1917

0 commit comments

Comments
 (0)