Closed jfrfonseca closed 8 years ago
It is not recommended to make comparisons to None using == due to possible compilation differences in the binaries for the value "None". Use if K is None: instead
if K is None:
It is not recommended to make comparisons to None using == due to possible compilation differences in the binaries for the value "None".
Use
if K is None:
instead