Apply suggestions from code review of branch Increased-linting

Co-authored-by: Beth Probert <beth_probert@outlook.com>
This commit is contained in:
Julian Stirling 2025-09-19 10:16:47 +00:00
parent b4e28e232e
commit b9ca8b3094
5 changed files with 5 additions and 4 deletions

View file

@ -136,7 +136,7 @@ ignore = [
"PLR2004", # Ignore magic values in comparison for now. It doesn't seem we can set
# allowed magic values and a number of our magic values are not really
# magic (such as 255 when doing uint8 maths)
"PT011", # Ifnore pytest.raises being used on too gereneral expectations without a
"PT011", # Ignore pytest.raises being used on too general expectations without a
# match. We may need to revisit this.
"SIM105", # Not enforcing use of `contextlib.suppress(NotConnectedToServerError)`
# instead of `try`-`except`-`pass`