summaryrefslogtreecommitdiff
path: root/check_pep8.sh
diff options
context:
space:
mode:
authorMaZderMind <git@mazdermind.de>2016-09-26 20:42:07 +0200
committerMaZderMind <git@mazdermind.de>2016-09-26 20:42:07 +0200
commit6e846c7081e242213cd70ceacfcff319e221942c (patch)
tree9d037e9272e65aea06c74775b2af1eae2f50a46e /check_pep8.sh
parentfbcbc3743e9179738244a96be54aa588e44314cb (diff)
parent1972da7f6aa60d3cb3b68808d0381e37898665f3 (diff)
Merge branch 'pep8'
Diffstat (limited to 'check_pep8.sh')
-rwxr-xr-xcheck_pep8.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/check_pep8.sh b/check_pep8.sh
new file mode 100755
index 0000000..d988d09
--- /dev/null
+++ b/check_pep8.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+pep8 --ignore=E402 .
+[ $? = 0 ] && echo "Success!" || echo "There were some warnings."