@@ -200,7 +200,7 @@ select = [
200200 # "PLR", # Pylint Refactoring suggestions
201201 " PLW" , # Pylint Warnings
202202 " PT" , # flake8-pytest-style (warnings about unit test best practices)
203- # "PTH", # flake8-use-pathlib (force use of pathlib instead of os.path)
203+ # "PTH", # flake8-use-pathlib (force use of pathlib instead of os.path)
204204 " PYI" , # flake8-pyi (warnings related to type hint best practices)
205205 " Q" , # flake8-quotes (force double quotes)
206206 # "RET", # flake8-return (various warnings related to implicit vs explicit return statements)
@@ -209,8 +209,8 @@ select = [
209209 # "S", # flake8-bandit (security oriented checks, but extremely pedantic - do not attempt to apply to unit test files)
210210 # "SIM", # flake8-simplify (rules to attempt to simplify code)
211211 # "SLF", # flake8-self (warn when protected members are accessed outside of a class or file)
212- # "SLOT", # flake8-slots (warn about subclasses that should define __slots__)
213- " T10" , # flake8-debugger (check for pdb traces left in Python code)
212+ " SLOT" , # flake8-slots (warn about subclasses that should define __slots__)
213+ " T10" , # flake8-debugger (check for pdb traces left in Python code)
214214 # "T20", # flake8-print (warn about use of `print` or `pprint` - force use of loggers)
215215 " TC" , # flake8-type-checking (type checking warnings)
216216 " TD" , # flake8-todos (force all TODOs to include an author and issue link)
0 commit comments