Closed llucax closed 5 months ago
The Comparable protocol uses Any for the other parameter for comparisons.
Comparable
Any
other
Use Self instead. mypy have some issues with this, so we might need to add more casts to make it work.
Self
mypy
cast
What's needed?
The
Comparable
protocol usesAny
for theother
parameter for comparisons.Proposed solution
Use
Self
instead.mypy
have some issues with this, so we might need to add morecast
s to make it work.Additional context