Hacking: Fix E241

Fix:
E241 multiple spaces after ':' (or ',')

Fix also a few other problems found by hacking in files changed.

Change-Id: I4c00551f29ad65df2631c8ae55fe2f022e872544
This commit is contained in:
Andreas Jaeger 2020-04-01 09:07:49 +02:00
parent 8730b1638b
commit 28bb650128
14 changed files with 22 additions and 23 deletions

View File

@ -136,11 +136,10 @@ commands = alembic -c manila/db/migrations/alembic.ini revision -m ""{posargs}
# W605 invalid escape sequence
# E741 ambiguous variable name 'l'
# E305 expected 2 blank lines after class or function definition, found 1
# E241 multiple spaces after ':'
# E731 do not assign a lambda expression, use a def
# E117 over-indented
# E226 missing whitespace around arithmetic operator
ignore = E117,E123,E226,E241,E305,E402,E731,E741,W503,W504,W605
ignore = E117,E123,E226,E305,E402,E731,E741,W503,W504,W605
builtins = _
# [H106] Don't put vim configuration in source files.
# [H203] Use assertIs(Not)None to check for None.