I have this folder structure:
main.py
utils
--forms.py
and am now trying in main.py to import something from forms.py with this:
from utils.forms import search_form
but I am getting this Exception
Traceback (most recent call last):
File "/home/kofi/Desktop/projects/groundtruth_auswertung/main.py", line 4, in <module>
from utils.forms import search_form
ModuleNotFoundError: No module named 'utils.forms'; 'utils' is not a package