Add Flake8 W503 ignore

Change-Id: Iaf6fc196cd87de2e7423cfda6df79660b6b2c5f7
This commit is contained in:
Aija Jauntēva 2021-08-04 03:38:15 -04:00
parent 8792ec74d8
commit a9ab0b8051

View File

@ -53,8 +53,9 @@ commands = oslo_debug_helper -t sushy_oem_idrac/tests {posargs}
[flake8]
# E123, E125 skipped as they are invalid PEP-8.
# [W503] Line break before binary operator.
show-source = True
ignore = E123,E125
ignore = E123,E125,W503
# [H106] Don't put vim configuration in source files.
# [H203] Use assertIs(Not)None to check for None.
# [H204] Use assert(Not)Equal to check for equality.