标签: python type-annotation
我有一个用例来接受类型提示作为函数的参数。但是接受类型提示的正确类型提示是什么?
T = TypeVar('T', bound='TypeHintType') def register_handler(type_hint: T, handler: Handler[T]) -> None: ...
是否可以使用“ TypeHintType”来注释类型提示应作为参数?