Skip to content

Commit e0a0ae9

Browse files
mwasilewnuclearcat
authored andcommitted
workflows: Ignore pycodestyle W503 and W504 warninigs
It's impossilble to be compliant with both W503 and W504 at the same time as they cover opposite cases. Both codes are included in the default ignore list so adding them back to the workflow. Signed-off-by: Milosz Wasilewski <milosz.wasilewski@oss.qualcomm.com>
1 parent 3c1a827 commit e0a0ae9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
5252
- name: Run pycodestyle
5353
run: |
54-
pycodestyle --ignore=E501 src/*.py
54+
pycodestyle --ignore=E501,W503,W504 src/*.py
5555
5656
- name: Install Python YAML package
5757
run: |

0 commit comments

Comments
 (0)