标签: python python-3.x pycharm
我有以下问题。
我有类似的东西
class X(models.Model): def add_meber(self, user : User <-Error here): # code class User(AbstractUser): # Code
当我在类X中使用类型提示时,Pycharm不是类User,有一种方法可以使它工作吗?
答案 0 :(得分:1)
在注释中用引号括起User或在Python 3.7的情况下使用postponed evaluation of annotations。
User