We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c287fe commit eb0ec4fCopy full SHA for eb0ec4f
1 file changed
.github/workflows/source.yml
@@ -20,7 +20,9 @@ jobs:
20
- name: PEP8
21
run: |
22
python3 -m pip install -U flake8
23
- python3 -m flake8 --exclude=thirdParty .
+ # E203: checks that ':' is not preceded by a space
24
+ # But the Ruff formatter has better logic for that
25
+ python3 -m flake8 --extend-ignore=E203 --exclude=thirdParty .
26
27
static-analysis:
28
runs-on: ubuntu-22.04
0 commit comments