Skip to content

Commit c09b8f4

Browse files
committed
Lint
1 parent 28ba02c commit c09b8f4

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "vitessce"
7-
version = "3.9.1"
7+
version = "3.9.2"
88
authors = [
99
{ name="Mark Keller", email="mark_keller@hms.harvard.edu" },
1010
]

src/vitessce/sync_store.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
from zarr.abc.store import Store
88
from zarr.core.buffer import Buffer, BufferPrototype
99

10+
1011
class SyncStoreWrapper(zarr.core.sync.SyncMixin):
1112
def __init__(self, store: Store) -> None:
1213
"""Synchronous Store wrapper
@@ -64,4 +65,4 @@ def supports_writes(self) -> bool:
6465

6566
@property
6667
def supports_deletes(self) -> bool:
67-
return self.store.supports_deletes
68+
return self.store.supports_deletes

0 commit comments

Comments
 (0)