Skip to content

Commit

Permalink
gh-workflows: fixed indention
Browse files Browse the repository at this point in the history
  • Loading branch information
jimdeekepler committed Mar 12, 2024
1 parent bb67974 commit bb0a591
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ jobs:
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
#flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
PYTHONPATH=. flake8 . --count --exit-zero --max-complexity=5 --max-line-length=100 --statistics \
--per-file-ignores="scrolltext/utils.py:F401 scrolltext/cli.py:C901" # see below
# --per-file-ignores="scrolltext/utils.py:F401" # F401 import but never used (IS_WINDOWS)
# --per-file-ignores="scrolltext/cli.py:C901" # C901 _parse_args is too comples
--per-file-ignores="scrolltext/utils.py:F401 scrolltext/cli.py:C901" # see below
# --per-file-ignores="scrolltext/utils.py:F401" # F401 import but never used (IS_WINDOWS)
# --per-file-ignores="scrolltext/cli.py:C901" # C901 _parse_args is too comples
- name: Unittests
run: |
PYTHONPATH=. python tests/utils_tests.py
Expand Down

0 comments on commit bb0a591

Please sign in to comment.