Skip to content

Commit bc79fd3

Browse files
committed
fix::修复 makefile flake8 忽略F824错误
1 parent f537071 commit bc79fd3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ SOURCE_GLOB=$(wildcard bin/*.py src/**/*.py tests/**/*.py examples/*.py)
1111
# Huan(202003)
1212
# F811: https://github.com/PyCQA/pyflakes/issues/320#issuecomment-469337000
1313
#
14-
IGNORE_PEP=E203,E221,E241,E272,E501,F811,W293
14+
IGNORE_PEP=E203,E221,E241,E272,E501,F811,W293,F824
1515

1616
# help scripts to find the right place of wechaty module
1717
export PYTHONPATH=src/
@@ -109,7 +109,7 @@ check-python-version:
109109

110110
.PHONY: format
111111
format:
112-
yapf $(SOURCE_GLOB)
112+
yapf $(SOURCE_GLOB)
113113

114114
code:
115115
code .

0 commit comments

Comments
 (0)