Running vscode from my machine to remote server,I am trying to import some modules from parent directories. What is the correct way to import the modules from run.py? Do I have to setup a configuration json file in the .vscode folder? Since I have a lot of modules the solution with the os package is not very helpful. Is there a way of importing all the custom modules from the current working directory?
Thank you
  .
├── folder1
│   └── module1.py
├── folder2
│   └── module2.py
└── folder3
    └── run.py
VSCode 1.72.0 Ubuntu 22.04.1 LTS
 
    