Skip to content

Commit 61ced65

Browse files
committed
ci: set flake8 max-line-length to 110
1 parent 7559ad0 commit 61ced65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
7878
- name: Run linting with flake8
7979
run: |
80-
flake8 src/ tests/ --count --max-complexity=10 --statistics
80+
flake8 src/ tests/ --count --max-line-length=110 --max-complexity=10 --statistics
8181
8282
test-macos:
8383
runs-on: macos-latest
@@ -145,7 +145,7 @@ jobs:
145145
146146
- name: Run linting with flake8
147147
run: |
148-
flake8 src/ tests/ --count --max-complexity=10 --statistics
148+
flake8 src/ tests/ --count --max-line-length=110 --max-complexity=10 --statistics
149149
150150
type-check:
151151
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)