From 2850b3792da4ab9cd79daa76c11922b044bd076c Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Tue, 1 Jun 2021 16:31:14 +0800 Subject: [PATCH] packagingtest.yml: Prevent bare except Fixes https://github.com/capnproto/pycapnp/issues/254 --- .github/workflows/packagingtest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/packagingtest.yml b/.github/workflows/packagingtest.yml index f200722..49e55ef 100644 --- a/.github/workflows/packagingtest.yml +++ b/.github/workflows/packagingtest.yml @@ -32,7 +32,7 @@ jobs: - name: Lint with flake8 run: | pip install flake8 - flake8 . --filename '*.py,*.pyx,*.pxd' --count --max-complexity=10 --max-line-length=120 --ignore=E211,E225,E226,E227,E231,E251,E261,E262,E265,E402,E722,E999 --show-source --statistics --exclude benchmark,build,capnp/templates/module.pyx + flake8 . --filename '*.py,*.pyx,*.pxd' --count --max-complexity=10 --max-line-length=120 --ignore=E211,E225,E226,E227,E231,E251,E261,E262,E265,E402,E999 --show-source --statistics --exclude benchmark,build,capnp/templates/module.pyx flake8 . --count --max-complexity=10 --max-line-length=120 --show-source --statistics --exclude benchmark,build - name: Packaging run: |