Skip to content

Commit

Permalink
Fix comparison issue which broke graphs in some cases
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkFenX committed Nov 27, 2024
1 parent 7edf1f9 commit 08d4e85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eos/utils/stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def __eq__(self, other):
floatUnerr(self._thermal) == floatUnerr(other._thermal) and
floatUnerr(self._kinetic) == floatUnerr(other._kinetic) and
floatUnerr(self._explosive) == floatUnerr(other._explosive) and
sorted(self._breachers) == sorted(other._breachers),
sorted(self._breachers) == sorted(other._breachers) and
self.profile == other.profile)

def __add__(self, other):
Expand Down

0 comments on commit 08d4e85

Please sign in to comment.