Enable E228 (Missing whitespace around modulo operator)

This commit is contained in:
Adam Turner 2023-08-15 18:10:01 +01:00
parent 038f9b85f6
commit 93cf83e6bf

View File

@ -308,6 +308,7 @@ select = [
"E225", # Missing whitespace around operator
"E226", # Missing whitespace around arithmetic operator
"E227", # Missing whitespace around bitwise or shift operator
"E228", # Missing whitespace around modulo operator
]
[tool.ruff.per-file-ignores]