采用以下文件夹结构。
sidebar-update
__init__.py
index.py
results.py
使用语句从index.py
中的results.py
中导入给定函数时
from results import getResultsTable
VSCode产生以下棉绒问题。
unresolved import 'results'Python(unresolved-import)
我把它当作是linter,仅搜索已安装的模块并忽略本地文件。如何添加此功能,以便识别有效的导入语句?
答案 0 :(得分:1)
通过启用jedi并禁用Python的Visual Studio IntelliCode修复了此问题。显然这是一个语言服务器问题。