example-code-2e/15-type-hints/randompick_generic.py
2021-03-22 12:24:21 -03:00

8 lines
191 B
Python

from typing import Protocol, runtime_checkable, TypeVar
T_co = TypeVar('T_co', covariant=True)
@runtime_checkable
class GenericRandomPicker(Protocol[T_co]):
def pick(self) -> T_co: ...