example-code-2e/08-def-type-hints/comparable/comparable.py
2021-03-22 12:24:21 -03:00

5 lines
128 B
Python

from typing import Protocol, Any
class SupportsLessThan(Protocol): # <1>
def __lt__(self, other: Any) -> bool: ... # <2>