Apply 2 suggestion(s) to 2 file(s)

Co-authored-by: Beth Probert <beth_probert@outlook.com>
This commit is contained in:
Julian Stirling 2025-06-12 10:29:54 +00:00
parent 3019e13c80
commit 37bb9635ad
2 changed files with 2 additions and 2 deletions

View file

@ -108,7 +108,7 @@ select = [
# "LOG", # Flake8 logging issues (pedantic logger formatting issues can be added with "G") # "LOG", # Flake8 logging issues (pedantic logger formatting issues can be added with "G")
# "T20", # Warns for print statments, production code should log # "T20", # Warns for print statments, production code should log
# "PT", # pytest linting # "PT", # pytest linting
"RET", # Consistent clear return statments "RET", # Consistent clear return statements
"RSE", # Raise parentheses "RSE", # Raise parentheses
# "SIM", # Simplifications detected # "SIM", # Simplifications detected
"ARG", # unused arguments "ARG", # unused arguments

View file

@ -24,7 +24,7 @@ select = [
"LOG", # Flake8 logging issues (pedantic logger formatting issues can be added with "G") "LOG", # Flake8 logging issues (pedantic logger formatting issues can be added with "G")
"T20", # Warns for print statments, production code should log "T20", # Warns for print statments, production code should log
"PT", # pytest linting "PT", # pytest linting
"RET", # Consistent clear return statments "RET", # Consistent clear return statements
"RSE", # Raise parentheses "RSE", # Raise parentheses
"SIM", # Simplifications detected "SIM", # Simplifications detected
"ARG", # unused arguments "ARG", # unused arguments