Skip to content

Commit

Permalink
strict pycodestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Dec 25, 2016
1 parent 259aded commit f42bf8e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions autopep8.py
Expand Up @@ -765,10 +765,10 @@ def fix_e305(self, result):
while True:
if offset < 0:
break
l = self.source[offset].lstrip()
if len(l) == 0:
line = self.source[offset].lstrip()
if len(line) == 0:
break
if l[0] != '#':
if line[0] != '#':
break
offset -= 1
offset += 1
Expand Down

0 comments on commit f42bf8e

Please sign in to comment.