Skip to content

Commit 6039a99

Browse files
committed
Be more strict on lines width (max 80 chars)
1 parent 3d8aca0 commit 6039a99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
pip install flake8
2929
# stop the build if there are Python syntax errors or undefined names
3030
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
31-
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
32-
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
31+
# exit-zero treats all errors as warnings
32+
flake8 . --count --exit-zero --max-complexity=10 --statistics
3333
- name: Lint with pylint
3434
run: |
3535
pip install pylint

0 commit comments

Comments
 (0)