andrewm89/djangovuejs

ModuleNotFoundError: No module named 'models'

Opened this issue · 1 comments

If you attempt to run the code as-is you will face: ModuleNotFoundError: No module named 'models'.

In order to fix this you must go to serializers.py and change

from models import JobList

to

from .models import JobList

thnx @xylust