Python - Magic Methods and Operator Overloading
Identify the problem in this code snippet:
class Score:
def __init__(self, points):
self.points = points
def __lt__(self, other):
return self.points < other