diff --git a/src/zarr/api/asynchronous.py b/src/zarr/api/asynchronous.py index 3f36614cc2..e5d09f8c3a 100644 --- a/src/zarr/api/asynchronous.py +++ b/src/zarr/api/asynchronous.py @@ -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 diff --git a/src/zarr/storage/common.py b/src/zarr/storage/common.py index 1e33967414..e9d57197e1 100644 --- a/src/zarr/storage/common.py +++ b/src/zarr/storage/common.py @@ -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