I have a django project. In views.py file, I tried to import my models (or anything from MYAPP) like this:
from MYAPP.models import *
from MYAPP.api.user.serializers import *
It shows me a warning "Unable to import 'MYAPP.~~'". My project is still running normally but VS-Code reported many errors so I don't know if it is true or not.
How can I fix it? Thank you ^^.