I use VS code Intellisense with Pylance as my language server. Autocomplete is not working only the newer feature of Django.
For example,
- When I import
models
fromdjango.db
, my autocomplete is not able to detectmodels.GeneratedField
, only it is not showing up but all other model fields are showing up ? - When using
from django.core.files.storage import storages
, “storages” is not being detect by my autocomplete but I did manually go to that file and confirmed its presence.
Thanks in advance