def __eq__()

in lambda/src/data_access/user_profile.py [0:0]


    def __eq__(self, other):
        if isinstance(other, self.__class__):
            return self.uid == other.uid and \
                   self.phone == other.phone and \
                   self.first_name == other.first_name and \
                   self.zip_code == other.zip_code and \
                   self.timezone == other.timezone and \
                   self.caretaker_num == other.caretaker_num and \
                   self.provider_num == other.provider_num
        return False