diff --git a/pyproject.toml b/pyproject.toml index d240b9f2..f1ad794e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -133,8 +133,6 @@ asyncio_mode = "auto" [tool.ruff.lint] ignore = [ - "ANN101", # Self... explanatory - "ANN102", # cls... just as annoying as ANN101 "ANN401", # Opinioated warning on disallowing dynamically typed expressions "D203", # Conflicts with other rules "D213", # Conflicts with other rules diff --git a/tests/ruff.toml b/tests/ruff.toml index 1005d3e1..0aa230a0 100644 --- a/tests/ruff.toml +++ b/tests/ruff.toml @@ -8,5 +8,5 @@ lint.extend-select = [ lint.extend-ignore = [ "S101", # Use of assert detected. As these are tests... "SLF001", # Tests will access private/protected members... - "TCH002", # pytest doesn't like this one... + "TC002", # pytest doesn't like this one... ]