in pulseapi/utility/validators.py [0:0]
def __eq__(self, other):
return (
isinstance(other, self.__class__) and
self.min_year == other.min_year and
self.max_offset == other.max_offset and
self.message == other.message and
self.code == other.code
)