From cc95d4631eb0ba640a6bbf335f9f1d0b5723b29c Mon Sep 17 00:00:00 2001 From: surister Date: Thu, 9 Jan 2020 12:07:41 +0100 Subject: [PATCH] Rename syntax_checker into syntax_lint --- scripts/run_ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_ci.sh b/scripts/run_ci.sh index d757060..2c83c99 100755 --- a/scripts/run_ci.sh +++ b/scripts/run_ci.sh @@ -1,5 +1,5 @@ #!/bin/bash # These are the same steps we are running in Travis CI -python tests/syntax_checker.py +python tests/syntax_lint.py flake8 --max-line-length=100 . && echo "PEP8 Passed"