ci: add W503 to flake8 ignore list
This commit adds W503 to the ignore list for flake8. This is done to avoid the following error: W503 line break before binary operator Signed-off-by: Daniel Bevenius <daniel.bevenius@gmail.com>
This commit is contained in:
parent
8ac20ae88b
commit
24bbb4447a
1 changed files with 1 additions and 1 deletions
2
.github/workflows/python-lint.yml
vendored
2
.github/workflows/python-lint.yml
vendored
|
@ -16,5 +16,5 @@ jobs:
|
||||||
- name: flake8 Lint
|
- name: flake8 Lint
|
||||||
uses: py-actions/flake8@v2
|
uses: py-actions/flake8@v2
|
||||||
with:
|
with:
|
||||||
ignore: "E203,E211,E221,E225,E231,E241,E251,E261,E266,E501,E701,E704"
|
ignore: "E203,E211,E221,E225,E231,E241,E251,E261,E266,E501,E701,E704,W503"
|
||||||
exclude: "examples/*,examples/*/**,*/**/__init__.py"
|
exclude: "examples/*,examples/*/**,*/**/__init__.py"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue