I have a Python module called util
. I would like to import a script in this package _util.py
from another script in scripts
folder.
Even if the util
package has an empty __init__.py
file it does not appear as a Python package but a normal directory, without the small dot on folder image.
How can I import this module?