Skip to content

Instantly share code, notes, and snippets.

@zwolf
Created June 1, 2017 19:24
Show Gist options
  • Save zwolf/f2d5f5f08ff8e683ba7730f8dddfb804 to your computer and use it in GitHub Desktop.
Save zwolf/f2d5f5f08ff8e683ba7730f8dddfb804 to your computer and use it in GitHub Desktop.
phageParser PEP-8 statistics
[02:23:06 (master) ~/mozilla/phageParser]$ pep8 --statistics -qq ./
4 E101 indentation contains mixed spaces and tabs
2 E111 indentation is not a multiple of four
1 E124 closing bracket does not match visual indentation
6 E201 whitespace after '['
1 E202 whitespace before ']'
12 E211 whitespace before '('
5 E221 multiple spaces before operator
8 E222 multiple spaces after operator
32 E225 missing whitespace around operator
64 E231 missing whitespace after ','
34 E251 unexpected spaces around keyword / parameter equals
21 E261 at least two spaces before inline comment
7 E262 inline comment should start with '# '
25 E265 block comment should start with '# '
1 E266 too many leading '#' for block comment
4 E301 expected 1 blank line, found 0
51 E302 expected 2 blank lines, found 1
7 E303 too many blank lines (2)
3 E401 multiple imports on one line
92 E501 line too long (96 > 79 characters)
3 E712 comparison to True should be 'if cond is True:' or 'if cond:'
1 E731 do not assign a lambda expression, use a def
137 W191 indentation contains tabs
48 W291 trailing whitespace
3 W292 no newline at end of file
25 W293 blank line contains whitespace
8 W391 blank line at end of file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment