diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6bc6b5d..026de1a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -5,24 +5,24 @@ ci: repos: - repo: https://github.com/abravalheri/validate-pyproject - rev: v0.19 + rev: v0.22 hooks: - id: validate-pyproject - repo: https://github.com/crate-ci/typos - rev: v1.24.5 + rev: v1.27.0 hooks: - id: typos - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.6.4 + rev: v0.7.2 hooks: - id: ruff args: [--fix, --unsafe-fixes] - id: ruff-format - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.11.2 + rev: v1.13.0 hooks: - id: mypy files: "^src/" diff --git a/src/in_n_out/_store.py b/src/in_n_out/_store.py index 830fb13..8476143 100644 --- a/src/in_n_out/_store.py +++ b/src/in_n_out/_store.py @@ -742,7 +742,7 @@ def _inner(func: Callable[P, R]) -> Callable[P, R]: return func # get a signature object with all type annotations resolved - # this may result in a NameError if a required argument is unresolveable. + # this may result in a NameError if a required argument is unresolvable. # There may also be unannotated required arguments, which will likely fail # when the function is called later. We break this out into a separate # function to handle notifying the user on these cases.