Код: Выделить всё
T = TypeVar('T', bound='TypeHintType')
def register_handler(type_hint: T, handler: Handler[T]) -> None:
...
Подробнее здесь: https://stackoverflow.com/questions/634 ... -type-hint
Код: Выделить всё
T = TypeVar('T', bound='TypeHintType')
def register_handler(type_hint: T, handler: Handler[T]) -> None:
...