Comparison with None performed iwth equality operators

This commit is contained in:
Ebag333
2016-10-19 08:17:34 -07:00
parent 699276ca58
commit c73b446482
3 changed files with 5 additions and 5 deletions

View File

@@ -32,7 +32,7 @@ replace = {"attributes": "_Item__attributes",
"projectedFits": "_Fit__projectedFits"}
def processEager(eager):
if eager == None:
if eager is None:
return tuple()
else:
l = []