def __eq__()

in src/pydolphinscheduler/models/base.py [0:0]


    def __eq__(self, other):
        return type(self) is type(other) and all(
            getattr(self, a, None) == getattr(other, a, None) for a in self._KEY_ATTR
        )