as an example I have something like this:
from django.db import models
# Create your models here.
class Category(MP_Node):
pass
is there a way to get the suggestion in vscode for the import of the module treebeard from MP_Node like:
from treebeard.mp_tree import MP_Node
i tried changing the depth and extra path in the setting and find this(VSCode: Auto import/import suggestions for Python dependencies from external libraries) but i couldn’t make it work for what i wanted,i have pylance extension and work in a devcontainer mode i don’t know if that’s relevant,what did i miss… any suggestions ? thank you in advance