diff options
Diffstat (limited to 'Lib/test/.ruff.toml')
-rw-r--r-- | Lib/test/.ruff.toml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Lib/test/.ruff.toml b/Lib/test/.ruff.toml index 231b0e5..1632900 100644 --- a/Lib/test/.ruff.toml +++ b/Lib/test/.ruff.toml @@ -1,7 +1,4 @@ fix = true -select = [ - "F811", # Redefinition of unused variable (useful for finding test methods with the same name) -] extend-exclude = [ # Excluded (run with the other AC files in its own separate ruff job in pre-commit) "test_clinic.py", @@ -32,3 +29,8 @@ extend-exclude = [ "test_yield_from.py", "time_hashlib.py", ] + +[lint] +select = [ + "F811", # Redefinition of unused variable (useful for finding test methods with the same name) +] |