Skip to content

Commit

Permalink
Make flake8 Ignore E203
Browse files Browse the repository at this point in the history
  • Loading branch information
mario-winkler committed Dec 2, 2024
1 parent 2c10cd4 commit 0086998
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
python -m pip install --upgrade pip flake8 black pytest requests
- name: Analysing the code with flake8
run: |
flake8 --max-line-length 120 --count --statistics src/
flake8 --max-line-length 120 --count --statistics --ignore E203 src/
- name: Check code format with black
run: |
black --check --diff --color src/
Expand Down

0 comments on commit 0086998

Please sign in to comment.