Skip to content

Commit eb0ec4f

Browse files
committed
Remove E203 from checking
1 parent 0c287fe commit eb0ec4f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/source.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ jobs:
2020
- name: PEP8
2121
run: |
2222
python3 -m pip install -U flake8
23-
python3 -m flake8 --exclude=thirdParty .
23+
# 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 .
2426
2527
static-analysis:
2628
runs-on: ubuntu-22.04

0 commit comments

Comments
 (0)