Skip to content

Commit 4927b1c

Browse files
chore: update pre-commit hook mypy
updates: - github.com/pre-commit/mirrors-mypy: v1.16.0 → v1.20.0
1 parent e46dfcf commit 4927b1c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ repos:
2626
- id: sp-repo-review
2727

2828
- repo: https://github.com/pre-commit/mirrors-mypy
29-
rev: v1.16.0
29+
rev: v1.20.0
3030
hooks:
3131
- id: mypy
3232
args: [--config-file, pyproject.toml]

tests/test_zarr3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ def test_export(codec_name: str) -> None:
4545
DeprecationWarning,
4646
match="The numcodecs.zarr3 module is deprecated and will be removed in a future release of numcodecs. ",
4747
):
48-
assert getattr(zarr3, codec_name) == getattr(zarr.codecs.numcodecs, codec_name)
48+
assert getattr(zarr3, codec_name) == getattr(zarr.codecs.numcodecs, codec_name) # type: ignore[attr-defined]

0 commit comments

Comments
 (0)