Try to add syntax errors to pep8 normalizing.

This commit is contained in:
Dave Halter
2017-07-10 23:04:54 +02:00
parent 53cf408d99
commit b3923e65e8
13 changed files with 93 additions and 49 deletions

View File

@@ -1,7 +1,7 @@
for a in 'abc':
for b in 'xyz':
print a # indented with 8 spaces
# TODO currently not an error, because the indentation matches.
print(a) # indented with 8 spaces
#: E901:1
print(b) # indented with 1 tab
if True:
#: E101:0