为什么VSCode Python linter无法解析同一目录中的文件导入?

时间:2020-07-07 13:07:41

标签: python visual-studio-code pylint vscode-python

采用以下文件夹结构。

sidebar-update
    __init__.py
    index.py
    results.py

使用语句从index.py中的results.py中导入给定函数时

from results import getResultsTable

VSCode产生以下棉绒问题。

unresolved import 'results'Python(unresolved-import)

我把它当作是linter,仅搜索已安装的模块并忽略本地文件。如何添加此功能,以便识别有效的导入语句?

1 个答案:

答案 0 :(得分:1)

通过启用jedi并禁用Python的Visual Studio IntelliCode修复了此问题。显然这是一个语言服务器问题。