Closed mtshiba closed 7 months ago
Tracking issue: #501
We would like to warn code like:
y = x == False if cond == True, do: ...
Of course, it should be:
y = not x if cond, do: ...
Tracking issue: #501
We would like to warn code like:
Of course, it should be: