1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-01 04:36:13 +01:00

Remove a debug print

This commit is contained in:
Daniel Mach 2024-03-05 15:50:44 +01:00
parent dffe549742
commit 36dd0401ee

View File

@ -428,8 +428,6 @@ class BaseModel(metaclass=ModelMeta):
def __eq__(self, other): def __eq__(self, other):
if type(self) != type(other): if type(self) != type(other):
return False 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() return self._get_cmp_data() == other._get_cmp_data()
def __lt__(self, other): def __lt__(self, other):