From 9999638cad95a121742fa22246dfde0c441fe1a5 Mon Sep 17 00:00:00 2001 From: Tom Aldcroft Date: Tue, 12 May 2020 18:28:55 -0400 Subject: [PATCH] Update flake8 checking for recent version of flake8 --- .github/workflows/flake8.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml index ca3f0de5..a5cdfaca 100644 --- a/.github/workflows/flake8.yml +++ b/.github/workflows/flake8.yml @@ -16,6 +16,4 @@ jobs: - name: Lint with flake8 run: | pip install flake8 - # Note: only check files in Ska.engarchive package. Many other files in - # the repo are not maintained as PEP8 compliant. - flake8 . --count --exclude=docs/conf.py --ignore=W504 --max-line-length=100 --show-source --statistics + flake8 . --count --exclude=docs/conf.py --ignore=W504,E402,F541 --max-line-length=100 --show-source --statistics