Skip to content

Commit 08d4e85

Browse files
committed
Fix comparison issue which broke graphs in some cases
1 parent 7edf1f9 commit 08d4e85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eos/utils/stats.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def __eq__(self, other):
176176
floatUnerr(self._thermal) == floatUnerr(other._thermal) and
177177
floatUnerr(self._kinetic) == floatUnerr(other._kinetic) and
178178
floatUnerr(self._explosive) == floatUnerr(other._explosive) and
179-
sorted(self._breachers) == sorted(other._breachers),
179+
sorted(self._breachers) == sorted(other._breachers) and
180180
self.profile == other.profile)
181181

182182
def __add__(self, other):

0 commit comments

Comments
 (0)