Skip to content

Commit 4c359e1

Browse files
committed
misc: Update workflow to ignore C901.
Signed-off-by: iabdalkader <[email protected]>
1 parent 1b077a0 commit 4c359e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/python-linter.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ jobs:
3535
run: |
3636
# stop the build if there are Python syntax errors or undefined names
3737
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
38-
flake8 . --count --max-complexity=15 --max-line-length=120 --statistics
38+
flake8 . --count --ignore=C901 --max-complexity=15 --max-line-length=120 --statistics

0 commit comments

Comments
 (0)