diff options
author | MaZderMind <git@mazdermind.de> | 2016-09-26 20:42:07 +0200 |
---|---|---|
committer | MaZderMind <git@mazdermind.de> | 2016-09-26 20:42:07 +0200 |
commit | 6e846c7081e242213cd70ceacfcff319e221942c (patch) | |
tree | 9d037e9272e65aea06c74775b2af1eae2f50a46e /check_pep8.sh | |
parent | fbcbc3743e9179738244a96be54aa588e44314cb (diff) | |
parent | 1972da7f6aa60d3cb3b68808d0381e37898665f3 (diff) |
Merge branch 'pep8'
Diffstat (limited to 'check_pep8.sh')
-rwxr-xr-x | check_pep8.sh | 3 |
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." |