为特定命令禁用 Pylance

Disable Pylance for a specific command

我在 Visual Studio 代码中使用 Python interactive

我有时使用display命令,在侧边打开的Notebook中运行正常,但Pylance将其标记为:"display" is not defined Pylance(reportUndefinedVariable)。这可能是因为我在 .py 文件中,它无法识别此命令,但是当 运行 VSCode 时,它工作正常。

我想(仅)忽略此警告,我该怎么做?

插图:

x = 42
display(x) # Pylance flags this

谢谢。

Pylance不能只抑制这种警告,它只能抑制一种类型的警告,例如:

  "python.analysis.diagnosticSeverityOverrides": {
    "reportUndefinedVariable": "none"
  },