6 lines
133 B
Python
6 lines
133 B
Python
from typing import Protocol, runtime_checkable, Any
|
|
|
|
@runtime_checkable
|
|
class RandomPicker(Protocol):
|
|
def pick(self) -> Any: ...
|