pep8: Fix E203 violations

This commit is contained in:
AZtheAsian
2016-12-01 16:08:34 -07:00
committed by Tim Abbott
parent e6369fc29b
commit 1ba150fa85
11 changed files with 39 additions and 39 deletions

View File

@@ -127,7 +127,7 @@ def parse_selectors_section(tokens):
assert pre_fluff == ''
i = start
text = ''
while i < len(tokens) and tokens[i].s != '{' :
while i < len(tokens) and tokens[i].s != '{':
s = tokens[i].s
text += s
i += 1