Skip to content
Merged
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
5 changes: 5 additions & 0 deletions virtualizarr/manifests/store.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,11 @@ def supports_deletes(self) -> bool:
# docstring inherited
return False

@property
def supports_partial_writes(self) -> Literal[False]:
# docstring inherited
return False

async def delete(self, key: str) -> None:
raise NotImplementedError

Expand Down