We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dda30b commit fa5c33eCopy full SHA for fa5c33e
2 files changed
.pre-commit-config.yaml
@@ -22,7 +22,7 @@ repos:
22
- id: sort-simple-yaml
23
- id: trailing-whitespace
24
- repo: https://github.com/astral-sh/ruff-pre-commit
25
- rev: 'v0.14.2'
+ rev: 'v0.14.3'
26
hooks:
27
- id: ruff-check
28
args: [--fix, --exit-non-zero-on-fix]
dvc/testing/benchmarks/fixtures.py
@@ -158,7 +158,7 @@ def _make_bench(name):
158
# pytest >= 8.4.0
159
wrapped_func = fixture_function._get_wrapped_function()
160
except AttributeError:
161
- wrapped_func = fixture_function.__pytest_wrapped__.obj # ty: ignore[unresolved-attribute]
+ wrapped_func = fixture_function.__pytest_wrapped__.obj # type: ignore[attr-defined] # ty: ignore[unresolved-attribute]
162
assert inspect.isgeneratorfunction(wrapped_func)
163
164
generator = wrapped_func(request)
0 commit comments