From 085de860e089e9b6dfefb8e344cd6433704539b2 Mon Sep 17 00:00:00 2001 From: Tim <92669413+0neShot@users.noreply.github.com> Date: Sat, 30 May 2026 14:38:07 +0200 Subject: [PATCH] Update flake8 syntax check to exclude F82 Removed F82 error from flake8 syntax check. --- .github/workflows/syntax-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/syntax-check.yml b/.github/workflows/syntax-check.yml index 4085760..784734a 100644 --- a/.github/workflows/syntax-check.yml +++ b/.github/workflows/syntax-check.yml @@ -27,7 +27,7 @@ jobs: - name: Lint with flake8 (Syntax errors) run: | # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + flake8 . --count --select=E9,F63,F7 --show-source --statistics - name: Check formatting with Black run: |