Home > Mobile >  Visual Studio Code Python Intellisense Issue
Visual Studio Code Python Intellisense Issue

Time:12-02

Can anyone shed light on why the intellisense isn't work for some imported modules? Example: enter image description here

In the above, I'm importing minidom library, but when I do . on the doc object I don't get any code complete options. In the video tutorials I was following, the author was using VSC and they had all the code completion options.

CodePudding user response:

I can reproduce your question and after setting "python.languageServer": "Jedi" then reloading window, suggestions are showing:

enter image description here

  • Related