2021-03-22 12:24:21 -03:00

7 lines
149 B
Python

from typing import Protocol, TypeVar, runtime_checkable, Any
@runtime_checkable
class RandomPopper(Protocol):
def pop_random(self) -> Any: ...