My dir looks like this
parentDir
|__ app
| |__ main.py
|
|__ file.py
I'm in main.py and want to import a func in module file.py.
I have tried to do from ../file import get_func
but I get an error
SyntaxError: invalid syntax
My way does not work, any idea where I'm going wrong?
I'm using python 3.8