there is my project hierachy:
#__init__.py are empty files
folder
 |-- globalFunctions.py
 |-- __init__.py
 |-- monitor
     |-- file.py
     |-- __init__.py
I'm tring to import functions from globalFunctions.py, when I'm in the file.py file. I have tried to import it with
from .. import globalFunctions
but I'm getting
ImportError: attempted relative import with no known parent package
Do you know how to make it work?
 
    