Skip to content

Commit 12e8393

Browse files
Fix new pre-commit issues
1 parent 6197cb3 commit 12e8393

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/zarr/abc/store.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,12 @@ def __enter__(self) -> Self:
4949
"""Enter a context manager that will close the store upon exiting."""
5050
return self
5151

52-
def __exit__(self, *args: Any) -> None:
52+
def __exit__(
53+
self,
54+
exc_type: type[BaseException] | None,
55+
exc_value: BaseException | None,
56+
traceback: TracebackType | None,
57+
) -> None:
5358
"""Close the store."""
5459
self.close()
5560

0 commit comments

Comments
 (0)