Closed deepsource-autofix[bot] closed 1 year ago
Comparisons to the singleton objects, like True, False, and None, should be done with identity, not equality. Use is or is not.
True
False
None
is
is not
Comparisons to the singleton objects, like
True
,False
, andNone
, should be done with identity, not equality. Useis
oris not
.