Fixed issue in Universe.__eq__ per comment by @paulromano

This commit is contained in:
Will Boyd 2017-05-12 15:36:48 -04:00
parent 572000419d
commit d5a6be95b5

View file

@ -76,7 +76,7 @@ class Universe(object):
return False
elif self.name != other.name:
return False
elif dict.__eq__(self.cells, other.cells):
elif dict.__ne__(self.cells, other.cells):
return False
else:
return True