From 36dd0401ee5f837d731d9b87fba81df6e48b2b77 Mon Sep 17 00:00:00 2001 From: Daniel Mach Date: Tue, 5 Mar 2024 15:50:44 +0100 Subject: [PATCH] Remove a debug print --- osc/util/models.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/osc/util/models.py b/osc/util/models.py index 13d1db83..ebcb8b40 100644 --- a/osc/util/models.py +++ b/osc/util/models.py @@ -428,8 +428,6 @@ class BaseModel(metaclass=ModelMeta): def __eq__(self, other): if type(self) != type(other): return False - if self._get_cmp_data() != other._get_cmp_data(): - print(self._get_cmp_data(), other._get_cmp_data()) return self._get_cmp_data() == other._get_cmp_data() def __lt__(self, other):