1
0
Fork 0
mirror of synced 2024-05-18 19:32:24 +12:00

fix lint action

This commit is contained in:
Nick Sweeting 2021-04-24 00:09:48 -04:00
parent 06f6084e3b
commit 430f28ca93

View file

@ -28,7 +28,8 @@ jobs:
- name: Lint with flake8
run: |
cd archivebox
# one pass for show-stopper syntax errors or undefined names
flake8 archivebox --count --show-source --statistics
flake8 . --count --show-source --statistics
# one pass for small stylistic things
flake8 archivebox --count --max-line-length="$MAX_LINE_LENGTH" --statistics
flake8 . --count --max-line-length="$MAX_LINE_LENGTH" --statistics