I have this structure:
F
f1
__init__.py
f.py
g.py
f2
__init__.py
h.py
f2.__init__.py:
from f1 import f, g
f2.h.py:
from f2 import f, g
f2.py is a __main__ file. When i run f2, I get the error
ModuleNotFoundError: No module named 'f2'
How can I fix that?
gfromf2when it don't containsg?