Skip to content

Commit

Permalink
zarr.store → zarr.storage (zarr-developers#2523)
Browse files Browse the repository at this point in the history
Also discard commented out code. Code commented out without a comment
doesn't help. The reason here was circular imports.
  • Loading branch information
DimitriPapadopoulos authored Dec 3, 2024
1 parent 44bcd16 commit bda158a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
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

0 comments on commit bda158a

Please sign in to comment.