Created by: myint
Before:
$ pep8 --statistics .
1 E125 continuation line does not distinguish itself from next logical line
3 E127 continuation line over-indented for visual indent
11 E128 continuation line under-indented for visual indent
1 E203 whitespace before ':'
21 E225 missing whitespace around operator
13 E231 missing whitespace after ','
10 E251 no spaces around keyword / parameter equals
4 E261 at least two spaces before inline comment
1 E301 expected 1 blank line, found 0
12 E302 expected 2 blank lines, found 1
22 E501 line too long (80 > 79 characters)
5 E701 multiple statements on one line (colon)
After:
$ pep8 --statistics .
11 E501 line too long (80 > 79 characters)
I ran the tests to confirm that they pass.