Directory structure is as follows:
master -> src -> utils -> time.py
master -> src -> features -> transformations.py
time.py has certain functions that transformations.py imports using the following :
from src.utils.time import robust_hour_of_iso_date
When I run the code using Run and Debug
the following error occurs :
Exception has occurred: ModuleNotFoundError
No module named 'src'
How do I solve this error ? New to VSCode so please ask any details you may require.