ModuleNotFoundError: No module named 'models'
norm-l opened this issue · 1 comments
norm-l commented
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
farschmessivo commented
thnx @xylust