7 lines
149 B
Python
7 lines
149 B
Python
from typing import Protocol, TypeVar, runtime_checkable, Any
|
|
|
|
|
|
@runtime_checkable
|
|
class RandomPopper(Protocol):
|
|
def pop_random(self) -> Any: ...
|