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