Skip to content

Commit 77f1148

Browse files
committed
flake8 fixes.
Also had to fix a couple of files too.
1 parent 25a4a34 commit 77f1148

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci-test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,8 @@ jobs:
107107
- name: run flake8 - abort for syntax error, otherwise warn only
108108
run: |
109109
# stop the build for Python syntax errors or undefined names
110-
flake8 roundup --count --select=E9,F63,F7,F82 --show-source --statistics
110+
# talgettext is a utility function ignore it.
111+
flake8 roundup --count --select=E9,F63,F7,F82 --show-source --statistics --extend-exclude talgettext.py
111112
# exit-zero treats all errors as warnings.
112113
# The GitHub editor is 127 chars wide
113114
flake8 roundup --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics

0 commit comments

Comments
 (0)