Skip to content

Commit

Permalink
infra.ci>modify.fix> fix ci lint error for PEP8 E203, see infra.misc>…
Browse files Browse the repository at this point in the history
…modify.fix: ignore E203 in flake8, see psf/black#315 for details
  • Loading branch information
pwnfan committed Aug 3, 2023
1 parent d6d2d9d commit 55a377d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install and Run Linters
run: |
python -m pip install black flake8 isort
flake8 --ignore=E501,W503 .
flake8 --ignore=E203,E501,W503 .
black . --check
isort --profile black .
Expand Down

0 comments on commit 55a377d

Please sign in to comment.