example-code-2e/08-def-type-hints/comparable/comparable.py

5 lines
128 B
Python
Raw Normal View History

2020-06-11 19:58:15 +02:00
from typing import Protocol, Any
2021-03-22 16:24:21 +01:00
class SupportsLessThan(Protocol): # <1>
2020-06-11 19:58:15 +02:00
def __lt__(self, other: Any) -> bool: ... # <2>