Turning on more lint checkers, warning for cameras that ignore resolution setting

This commit is contained in:
Julian Stirling 2025-06-10 13:57:34 +01:00
parent ae2ec1864f
commit 3f0564f253
3 changed files with 6 additions and 2 deletions

View file

@ -111,8 +111,8 @@ select = [
# "RET", # Consistent clear return statments
"RSE", # Raise parentheses
# "SIM", # Simplifications detected
# "ARG", # unused arguments
# "C90", # McCabe complexity!
"ARG", # unused arguments
"C90", # McCabe complexity!
"NPY", # Numpy linting
"N", # PEP8 naming
# "DOC", # Enforce argument, return, and raise to be mentioned in docstrings there is