Skip to content

Commit 81d65e8

Browse files
committed
Run pep on all scripts for bamos#4.
1 parent ab0086f commit 81d65e8

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.travis-script-2.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@ set -x -e # Show commands being executed and exit nonzero upon errors.
33

44
./python2.7/music-organizer.py --help
55
./python2.7/mt.py --help
6+
7+
for F in python2.7/*; do
8+
pep8 --ignore=E402 $F
9+
done

.travis-script-3.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ set -x -e # Show commands being executed and exit nonzero upon errors.
1010
./python3/word-counter.py README.md
1111
./python3/eval-expr.py '(((4+6)*10)<<2)'
1212
./python3/merge-mutt-contacts.py --help
13+
14+
for F in python3/*; do
15+
pep8 --ignore=E402 $F
16+
done

0 commit comments

Comments
 (0)