aboutsummaryrefslogtreecommitdiff
path: root/check_pep8.sh
blob: d988d098f5a1c6f6aaf3b19bfed0231aaf0403f0 (plain)
  1. #!/bin/sh
  2. pep8 --ignore=E402 .
  3. [ $? = 0 ] && echo "Success!" || echo "There were some warnings."