Files
example-code-2e/15-more-types/randompop.py
2021-05-20 22:58:05 -03:00

7 lines
140 B
Python

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