From 325d969ab9e53d1c658bd341bf9e60c332962bcd Mon Sep 17 00:00:00 2001 From: cringe-neko-girl <166271770+cringe-neko-girl@users.noreply.github.com> Date: Sun, 8 Dec 2024 23:07:12 -0500 Subject: [PATCH] Update python-app.yml --- .github/workflows/python-app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 522bf8a7..4cf55704 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -36,7 +36,7 @@ jobs: run: | # Stop the build if there are Python syntax errors or undefined names flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - # Treat all errors as warnings and set max complexity and line length + # Treat all errors as warnings, set max complexity and line length flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest