Closed jfrfonseca closed 8 years ago
It is not recommended to make comparisons to True or False using == due to possible compilation differences in the binaries for the values of the booleans.
Use if K: or if not K instead
if K:
if not K
It is not recommended to make comparisons to True or False using == due to possible compilation differences in the binaries for the values of the booleans.
Use
if K:
orif not K
instead