diff options
author | Martin Vilcans <martin@librador.com> | 2015-04-03 14:55:15 +0200 |
---|---|---|
committer | Martin Vilcans <martin@librador.com> | 2015-04-03 14:55:15 +0200 |
commit | f2f57ec054094bdbf7499b3595b22b86311df726 (patch) | |
tree | b8e8bbd004f49799b0088ebffe3bbfad2be79749 /bin | |
parent | 6fa300570239d8709f1cecb94fdac3fd85900adc (diff) | |
download | screenplain-f2f57ec054094bdbf7499b3595b22b86311df726.tar.gz |
Ignore PEP8 error about imports not at top of file
This appeared after pep8 version 1.6.0.
See jcrocholl/pep8#264
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/test | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,3 +1,3 @@ #!/bin/bash nosetests --nocapture --with-doctest --doctest-tests $* && \ - pep8 screenplain tests + pep8 --ignore=E402 screenplain tests |