Files
example-code-2e/08-def-type-hints/comparable/comparable.py
2020-06-11 14:58:15 -03:00

5 lines
122 B
Python

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