diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 2ba9a33..bf5a715 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -14,13 +14,13 @@ repos: - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.6.9" + rev: "v0.11.7" hooks: - id: ruff args: [--fix, --show-fixes] - id: ruff-format - repo: https://github.com/codespell-project/codespell - rev: "v2.3.0" + rev: "v2.4.1" hooks: - id: codespell diff --git a/projects/hello-cython/hello/__init__.py b/projects/hello-cython/hello/__init__.py index c6909c7..c6a2cc7 100644 --- a/projects/hello-cython/hello/__init__.py +++ b/projects/hello-cython/hello/__init__.py @@ -1,3 +1,3 @@ from ._hello import elevation, hello -__all__ = ("hello", "elevation") +__all__ = ("elevation", "hello")