From fb20c458befe35f36c5b104cc341a3d989fe4148 Mon Sep 17 00:00:00 2001 From: Eugene Evstafev Date: Fri, 18 Apr 2025 14:25:39 +0100 Subject: [PATCH] refactor(ci): remove unused comments --- .github/workflows/python-lint-format.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/python-lint-format.yml b/.github/workflows/python-lint-format.yml index db655d5..a994be7 100644 --- a/.github/workflows/python-lint-format.yml +++ b/.github/workflows/python-lint-format.yml @@ -26,17 +26,10 @@ jobs: run: | python -m pip install --upgrade pip pip install black flake8 - # Optional: If your linter needs project dependencies, install them: - # if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - # Or for Poetry: if [ -f poetry.lock ]; then pip install poetry && poetry install --no-root; fi - # Or for PDM: if [ -f pdm.lock ]; then pip install pdm && pdm install --no-self; fi - name: Lint with Flake8 run: | - # Stop the build if there are Python syntax errors or undefined names - # Exit-zero treats all errors as warnings. Increase complexity threshold. flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - # Check for other issues, but don't fail the build (exit-zero) flake8 . --count --exit-zero --max-complexity=10 --max-line-length=88 --statistics - name: Check formatting with Black