python 如何给 class 做 typing hint?
我希望给 class 做个 typing hint ,但是貌似只能写 type ?
但是 type 过于宽泛了
from loguru import loggerclass MyClass:
def __init__(self, name: str, data: dict[str, int | str]) -> None:
pass
def func(cls: type):
pass
func(MyClass)
比如我有一个 func 函数,接受的参数是一个 class,我希望给该参数 cls,添加一个『准确』的 typing hint,除了 cls:type
还有其他选择吗?
回答:
from typing import Typedef func(cls: Type[MyClass]):
以上是 python 如何给 class 做 typing hint? 的全部内容, 来源链接: utcz.com/p/938608.html