This would involve removing this line
|
[tool.ruff.lint.per-file-ignores] |
|
"tests/**" = [ |
|
"ANN", # flake8-annotations |
And fixing all of the issues that ruff raises.
I do remember that pytest does not expose type annotations for some of the built-in fixtures (the class itself is in a _ prefixed module), but I don't remember which one
This would involve removing this line
mcstatus/pyproject.toml
Lines 172 to 174 in b11ac63
And fixing all of the issues that ruff raises.
I do remember that pytest does not expose type annotations for some of the built-in fixtures (the class itself is in a
_prefixed module), but I don't remember which one