如何在类中应用新的python类型提示,并引用该类的实例?

时间:2019-05-15 21:46:32

标签: python python-3.x type-hinting

示例代码:

Class Products:
     @staticmethod
     def method(qs : QuerySet[Products]) -> QuerySet[Products]:
          pass

问题:

NameError: name 'Products' is not defined

在这种情况下如何应用python类型提示?

0 个答案:

没有答案