采用以下文件夹结构。
sidebar-update
__init__.py
index.py
results.py
使用语句index.py
从 from中导入给定函数时results.py
from results import getResultsTable
VSCode 产生以下 linting 问题。
unresolved import 'results'Python(unresolved-import)
我将此作为 linter 仅搜索已安装的模块并忽略本地文件。如何添加此功能以使其识别有效的导入语句?