pycodestyle
pycodestyle copied to clipboard
No warning about missing space between closing parenthesis and keyword
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