Codebase list voctomix / debian/0.5.1-1 check_pep8.sh
debian/0.5.1-1

Tree @debian/0.5.1-1 (Download .tar.gz)

check_pep8.sh @debian/0.5.1-1raw · history · blame

1
2
3
#!/bin/sh
pep8 --ignore=E402 .
[ $? = 0 ] && echo "Success!" || echo "There were some warnings."