pycodestyle icon indicating copy to clipboard operation
pycodestyle copied to clipboard

E731 false negatives

Open jpy-git opened this issue 3 years ago • 3 comments

a = lambda x: x  # Raises E731
a = (
    lambda x: x 
) # Doesn't raise E731
a, b = lambda x: x, lambda y: y  # Doesn't raise E731
a, b = 1, lambda y: y  # Doesn't raise E731

jpy-git avatar Mar 27 '22 03:03 jpy-git