python报错-“unresolved reference” error on the IDE when opening a working project

问题:

我在实战的过程中,有时去调用一个库,明明我已经写好了,并归类在同一文件夹中,但pycharm还是提示我们 不存在,没调用到。

import time, uuid
#  我实际已经写好了orm文件,对应的Model均定义好,但以下代码一直提示出错
from orm import Model, StringField, BooleanField, FloatField, TextField

最终是在 stackoverflow 上找到答案:

python报错-“unresolved reference” error on the IDE when opening a working project_第1张图片
示意图

stackoverflow解答

备注:

图片有误,后期再次遇到,实际测试是 只标记 Sources Root即可。
resource root 资源根
sources root 源根

你可能感兴趣的:(python报错-“unresolved reference” error on the IDE when opening a working project)