pre-commit: enable Python flake8 rule E271 (#9358)

This commit is contained in:
John Bampton 2024-07-09 18:17:53 +10:00 committed by GitHub
parent a1d8bab43f
commit c6d3f6e623
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
14 changed files with 18 additions and 17 deletions

View File

@ -22,6 +22,7 @@
# E224 Tab after operator # E224 Tab after operator
# E227 Missing whitespace around bitwise or shift operator # E227 Missing whitespace around bitwise or shift operator
# E242 Tab after ',' # E242 Tab after ','
# E271 Multiple spaces after keyword
# E273 Tab after keyword # E273 Tab after keyword
# E274 Tab before keyword # E274 Tab before keyword
# E713 Test for membership should be 'not in' # E713 Test for membership should be 'not in'
@ -38,4 +39,4 @@
exclude = exclude =
.git, .git,
venv venv
select = E112,E113,E133,E223,E224,E227,E242,E273,E274,E713,E742,E743,E901,E902,W291,W292,W293,W391 select = E112,E113,E133,E223,E224,E227,E242,E271,E273,E274,E713,E742,E743,E901,E902,W291,W292,W293,W391