Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/zarr/api/asynchronous.py
Original file line number Diff line number Diff line change
Expand Up @@ -653,12 +653,12 @@ async def open_group(
Store or path to directory in file system or name of zip file.

Strings are interpreted as paths on the local file system
and used as the ``root`` argument to :class:`zarr.store.LocalStore`.
and used as the ``root`` argument to :class:`zarr.storage.LocalStore`.

Dictionaries are used as the ``store_dict`` argument in
:class:`zarr.store.MemoryStore``.
:class:`zarr.storage.MemoryStore``.

By default (``store=None``) a new :class:`zarr.store.MemoryStore`
By default (``store=None``) a new :class:`zarr.storage.MemoryStore`
is created.

mode : {'r', 'r+', 'a', 'w', 'w-'}, optional
Expand Down
2 changes: 0 additions & 2 deletions src/zarr/storage/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
from zarr.storage.local import LocalStore
from zarr.storage.memory import MemoryStore

# from zarr.store.remote import RemoteStore

if TYPE_CHECKING:
from zarr.core.buffer import BufferPrototype

Expand Down