From da1879210f608f4e86370b460b4a16e2ba386296 Mon Sep 17 00:00:00 2001 From: JanLJL Date: Thu, 7 Apr 2022 12:18:57 +0200 Subject: [PATCH] removed solo black run --- .github/workflows/lint.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 1592981..ae00040 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,17 +19,12 @@ jobs: - name: Install Python dependencies run: python -m pip install black flake8 - - name: Black solo - uses: psf/black@stable - with: - options: "--check --verbose --diff --color -l 99" - - name: Run linters uses: wearerequired/lint-action@v1 with: github_token: ${{ secrets.github_token }} # Enable linters black: true - black_args: "-l 99" + black_args: "-l 99 --diff --color" flake8: true flake8_args: "--max-line-length=99 --extend-ignore=E203,E501"