summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 1 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index e2f07ada..7ba2fa8a 100644
--- a/SConstruct
+++ b/SConstruct
@@ -1863,11 +1863,9 @@ if len(python_progs) > 0:
if len(python_progs) > 0:
pep8 = Utility("pep8",
["jsongen.py", "maskaudit.py", python_built_extensions],
- ['pep8 --ignore=W602,E122,E241 {0} SConstruct '
+ ['pycodestyle --ignore=W602,E122,E241 {0} SConstruct '
'gps/[a-zA-Z]*.py *.py'''.format(" ".join(python_progs))])
-# Additional Python readablity style checks
-if len(python_progs) > 0:
flake8 = Utility("flake8",
["jsongen.py", "maskaudit.py", python_built_extensions],
['flake8 --ignore=E501,W602,E122,E241,E401 {0} '