CI: ignore F824 (#4790)

This is an added check in flake8 that does not really fit the goal
of the github action and currently throws a lot of errors.
This commit is contained in:
black-sliver
2025-04-07 00:39:25 +02:00
committed by GitHub
parent f03bb61747
commit f94492b2d3

View File

@@ -65,7 +65,7 @@ jobs:
continue-on-error: false
if: env.diff != '' && matrix.task == 'flake8'
run: |
flake8 --count --select=E9,F63,F7,F82 --show-source --statistics ${{ env.diff }}
flake8 --count --select=E9,F63,F7,F82 --ignore F824 --show-source --statistics ${{ env.diff }}
- name: "flake8: Lint modified files"
continue-on-error: true