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
9 changes: 9 additions & 0 deletions src/zarr/api/asynchronous.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,14 +250,23 @@ async def consolidate_metadata(


async def copy(*args: Any, **kwargs: Any) -> tuple[int, int, int]:
"""
Not implemented.
"""
raise NotImplementedError


async def copy_all(*args: Any, **kwargs: Any) -> tuple[int, int, int]:
"""
Not implemented.
"""
raise NotImplementedError


async def copy_store(*args: Any, **kwargs: Any) -> tuple[int, int, int]:
"""
Not implemented.
"""
raise NotImplementedError


Expand Down
9 changes: 9 additions & 0 deletions src/zarr/api/synchronous.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,23 @@ def consolidate_metadata(


def copy(*args: Any, **kwargs: Any) -> tuple[int, int, int]:
"""
Not implemented.
"""
return sync(async_api.copy(*args, **kwargs))


def copy_all(*args: Any, **kwargs: Any) -> tuple[int, int, int]:
"""
Not implemented.
"""
return sync(async_api.copy_all(*args, **kwargs))


def copy_store(*args: Any, **kwargs: Any) -> tuple[int, int, int]:
"""
Not implemented.
"""
return sync(async_api.copy_store(*args, **kwargs))


Expand Down
Loading