Apr 18, 2023
Protip: there is almost never any reason to implement the __gt__
method. Instead, implement just __lt__
and then decorate the class with functools.total_ordering
.
Protip: there is almost never any reason to implement the __gt__
method. Instead, implement just __lt__
and then decorate the class with functools.total_ordering
.