diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 30a89d9..1d475d9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -18,11 +18,11 @@ repos: hooks: - id: pyproject-fmt - repo: https://github.com/biomejs/pre-commit - rev: v2.2.3 + rev: v2.2.4 hooks: - id: biome-format - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.17.1 + rev: v1.18.1 hooks: - id: mypy args: [--config-file=pyproject.toml] diff --git a/tests/test_stats.py b/tests/test_stats.py index 2380c8d..c459475 100644 --- a/tests/test_stats.py +++ b/tests/test_stats.py @@ -296,7 +296,7 @@ def test_dask_constant_blocks(dask_viz: Callable[[object], None], array_type: Ar result = stats.is_constant(x, axis=None) dask_viz(result) - assert result.compute() is False + assert result.compute() is False # type: ignore[comparison-overlap] @pytest.mark.benchmark