1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-29 11:16:14 +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):
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):