VSCode quick fix does not suggest imports from a Python package in the same workspace
Overview I have a VSCode workspace which contains two directories. In one is my main application, in another is a common package used by this application and a couple of others. # main-app.code-workspace “folders”: [ { “path”: “.” }, { “path”: “../common/shared_package” } ], I am able to import classes from the shared package if […]