Okay guys I have a problem with the behavior of VS code which is driving me nuts to be honest
So I have a directory structure where I have a bunch of folders where I'm actually writing the actual program and one single folder where I have the utilities kind of folder where I have all of the utilities
Now the problem is whenever I open vs code so that I can see all of the folders including the utilities 1 and then inside of subfolder I'm writing one of the program files and I'm importing one of the modules from one of the utils the problem I'm having is that the python program cannot find that module
Then I have to do this weird hack around where I do
sys.path.append("..")```
and then i also Need to open one of the subfolders as the main folder in VS code for district to work and only then can it import the utils properly so is there a work around around this or is there any other solution to this problem

