Skip to content

Commit

Permalink
fixing mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
gesinaphillips committed Feb 2, 2024
1 parent 99858a1 commit 67436d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
pip install flake8 black isort
- name: Flake8 Lint
run: |
flake8 --ignore=E501,W503,E203
flake8 --ignore=E501,W503,E203 .
- name: Black Lint
run: |
black --line-length 99 --check --verbose
black --line-length 99 --check --verbose .
- name: isort Lint
run: |
isort --profile black --check-only --diff
isort --profile black --check-only --diff .

0 comments on commit 67436d4

Please sign in to comment.