From e4ce3c0f5c188436b86091517ab6a96ef58e67a6 Mon Sep 17 00:00:00 2001 From: FriedrichFroebel Date: Wed, 24 Jul 2024 18:37:02 +0200 Subject: [PATCH] exclude external cgi.py from flake8 analysis --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f68e351..e215822 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,7 @@ jobs: python -m unittest discover --verbose --start-directory tests - name: run flake8 run: - python -m flake8 . + python -m flake8 -extend-exclude "cgi.py" . - name: run black run: black --check --diff .