Skip to content

Commit d3720db

Browse files
Ian Cordascoflorentx
authored andcommitted
This appears to fix #323
I am very skeptical of this though
1 parent 67cb861 commit d3720db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pep8.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ def whitespace_around_named_parameter_equals(logical_line, tokens):
771771
no_space = False
772772
if start != prev_end:
773773
yield (prev_end, message)
774-
elif token_type == tokenize.OP:
774+
if token_type == tokenize.OP:
775775
if text == '(':
776776
parens += 1
777777
elif text == ')':

0 commit comments

Comments
 (0)