From 08d4e852d368978e344adf2cbdaad7cb5ffb612a Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Wed, 27 Nov 2024 23:25:49 +0100 Subject: [PATCH] Fix comparison issue which broke graphs in some cases --- eos/utils/stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eos/utils/stats.py b/eos/utils/stats.py index c22f9632d..6d484e0f2 100644 --- a/eos/utils/stats.py +++ b/eos/utils/stats.py @@ -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):