Add ruff checking for unnecessary comprehensions

This commit is contained in:
Julian Stirling 2025-06-10 15:09:18 +01:00
parent 2050c2dc7c
commit 1c54d25212
4 changed files with 4 additions and 4 deletions

View file

@ -102,7 +102,7 @@ select = [
# "PL", # Pylint (a subset of, catches far less than pylint does)
# "B", # Flake8 bugbear
"A", # Flake8 builtins checker
# "C", # Flake8 comprehensions
"C", # Flake8 comprehensions
# "FIX", #TODO/FIXME's in code. These should be added during develoment for ongoing tasks.
# If they are not fixed before merge they should be converted to GitLab issues
# "LOG", # Flake8 logging issues (pedantic logger formatting issues can be added with "G")