We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a71174 commit e73bcc9Copy full SHA for e73bcc9
src/zarr/storage/object_store.py
@@ -38,7 +38,7 @@ def __eq__(self, value: object) -> bool:
38
if not isinstance(value, ObjectStore):
39
return False
40
41
- return self.store.__eq__(value.store)
+ return bool(self.store.__eq__(value.store))
42
43
def __init__(self, store: _ObjectStore, *, read_only: bool = False) -> None:
44
self.store = store
0 commit comments