未解析的引用pycharm不识别它下面的类

时间:2018-04-29 16:22:59

标签: 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,有一种方法可以使它工作吗?

1 个答案:

答案 0 :(得分:1)

在注释中用引号括起User或在Python 3.7的情况下使用postponed evaluation of annotations