example-code-2e/13-protocol-abc/typing/randompick.py
2021-02-14 20:58:46 -03:00

6 lines
133 B
Python

from typing import Protocol, runtime_checkable, Any
@runtime_checkable
class RandomPicker(Protocol):
def pick(self) -> Any: ...