def __eq__()

in spectator/meter/meter_id.py [0:0]


    def __eq__(self, other) -> bool:
        if isinstance(self, other.__class__):
            return self.__dict__ == other.__dict__
        return False