We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4eb41bb + 8867b1c commit 863e6bcCopy full SHA for 863e6bc
.pre-commit-config.yaml
@@ -1,6 +1,6 @@
1
repos:
2
- repo: https://github.com/astral-sh/ruff-pre-commit
3
- rev: "v0.9.4"
+ rev: "v0.9.7"
4
hooks:
5
- id: ruff
6
args: ["--fix"]
@@ -43,7 +43,7 @@ repos:
43
language: python
44
additional_dependencies: [pygments, restructuredtext_lint]
45
- repo: https://github.com/pre-commit/mirrors-mypy
46
- rev: v1.14.1
+ rev: v1.15.0
47
48
- id: mypy
49
files: ^(src/|testing/)
src/pluggy/_callers.py
@@ -32,7 +32,7 @@ def _raise_wrapfail(
32
),
33
msg: str,
34
) -> NoReturn:
35
- co = wrap_controller.gi_code
+ co = wrap_controller.gi_code # type: ignore[union-attr]
36
raise RuntimeError(
37
f"wrap_controller at {co.co_name!r} {co.co_filename}:{co.co_firstlineno} {msg}"
38
)
0 commit comments