I have created utils.py and constant.py (saved in the same folder of all src file) and I wrote this in main.py
import utils
import constant
but when I try to run the entire program it gives me this error:
Unable to import 'utils'
and if I open utils.py I noticed this error:
Unable to import 'constant'
(because I need constant also in utils.py)
How can I solve it?