使用用户定义的类的类型提示

25 浏览
0 Comments

使用用户定义的类的类型提示

找不到确定的答案。我想为一个函数进行类型提示,类型是我定义的一个自定义类,称之为CustomClass()

然后假设在某个函数中,称之为FuncA(arg),我有一个名为arg的参数。正确的类型提示FuncA的方式是哪种:

def FuncA(arg: CustomClass):

还是:

from typing import Type
def FuncA(Arg:Type[CustomClass]):

0