Skip to content

Commit

Permalink
chg: [flake8] Set max-line-length to 120.
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricbonhomme committed Dec 12, 2023
1 parent 299a498 commit 395aad3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# stop the build if there are Python syntax errors or undefined names
poetry run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
poetry run flake8 . --count --max-complexity=15 --max-line-length=100 --statistics
poetry run flake8 . --count --max-complexity=15 --max-line-length=120 --statistics
# - name: Test with pytest
# run: |
Expand Down

0 comments on commit 395aad3

Please sign in to comment.