summaryrefslogtreecommitdiff
path: root/check_pep8.sh
diff options
context:
space:
mode:
Diffstat (limited to 'check_pep8.sh')
-rwxr-xr-xcheck_pep8.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/check_pep8.sh b/check_pep8.sh
index 068c226..d988d09 100755
--- a/check_pep8.sh
+++ b/check_pep8.sh
@@ -1,3 +1,3 @@
#!/bin/sh
-pep8 .
+pep8 --ignore=E402 .
[ $? = 0 ] && echo "Success!" || echo "There were some warnings."