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 6197cb3 commit 12e8393Copy full SHA for 12e8393
src/zarr/abc/store.py
@@ -49,7 +49,12 @@ def __enter__(self) -> Self:
49
"""Enter a context manager that will close the store upon exiting."""
50
return self
51
52
- def __exit__(self, *args: Any) -> None:
+ def __exit__(
53
+ self,
54
+ exc_type: type[BaseException] | None,
55
+ exc_value: BaseException | None,
56
+ traceback: TracebackType | None,
57
+ ) -> None:
58
"""Close the store."""
59
self.close()
60
0 commit comments