5 lines
128 B
Python
5 lines
128 B
Python
from typing import Protocol, Any
|
|
|
|
class SupportsLessThan(Protocol): # <1>
|
|
def __lt__(self, other: Any) -> bool: ... # <2>
|