Skip to content

Commit

Permalink
fix(lint): try to fix linting error from psf/black
Browse files Browse the repository at this point in the history
  • Loading branch information
savon-noir committed Sep 1, 2022
1 parent 2388af3 commit 1279cca
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/preflight_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ jobs:
python -m pip install --upgrade pip
pip install black isort flake8
- name: Format checker with psf/black
uses: psf/black@22.8.0
run: black --check -l 79 .
uses: psf/black@stable
with:
options: "--check -l 79"
version: "28.8.0"
- name: Format checker with isort
run: isort --check-only -m 3 -l 79 --profile=black .
- name: Lint with flake8
Expand Down

0 comments on commit 1279cca

Please sign in to comment.