mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 05:35:49 -04:00
Fixed issue in Universe.__eq__ per comment by @paulromano
This commit is contained in:
parent
572000419d
commit
d5a6be95b5
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue