There is the following structure:
project/
I-----main.py
I-----src/
I----__init__.py (empty)
I----util.py
I----shared/
I----__init__.py (empty)
I----hello.py
#main.py
from src import util
#util.py (runs without errors)
from shared import hello
#hello.py (runs without errors)
def hello():
print("Hello")
I try to run main.py, get result
ModuleNotFoundError: No module named 'shared'
How to repair imports in main.py?