pycodestyle icon indicating copy to clipboard operation
pycodestyle copied to clipboard

No warning about missing space between closing parenthesis and keyword

Open dpursehouse opened this issue 11 years ago • 13 comments

The following code does not result in any warnings:

if a()and b():
    pass

if b()in [1, 2, 3]:
    pass

if c()or d():
    pass

dpursehouse avatar Jan 16 '15 05:01 dpursehouse