Closed
Description
x = 0
y = 1
if x() == -y:
print("THAT")
turns into:
x = 0
y = 1
if x() == - y:
print("THAT")
@brettcannon please confirm this is a bug. Based on my knowledge of Pep8 this is wrong.
x = 0
y = 1
if x() == -y:
print("THAT")
turns into:
x = 0
y = 1
if x() == - y:
print("THAT")
@brettcannon please confirm this is a bug. Based on my knowledge of Pep8 this is wrong.