Skip to content

Commit

Permalink
Style: ignore E203 in flake8 as it is not PEP8 conform
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippvK committed Jun 23, 2022
1 parent f3b8ca1 commit 5a9f18b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
black: true
black_args: "--line-length=120"
flake8: true
flake8_args: "--max-line-length=120"
flake8_args: "--max-line-length=120 --ignore=E203"

check-license:
name: Check for License headers
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ disable = duplicate-code,invalid-name,too-many-arguments,fixme

[flake8]
max-line-length = 120
ingore = E203

0 comments on commit 5a9f18b

Please sign in to comment.