a b/python/.vscode/launch.json
1
{
2
    "version": "0.2.0",
3
    "configurations": [
4
5
        {
6
            "name": "Python",
7
            "type": "python",
8
            "request": "launch",
9
            "stopOnEntry": true,
10
            "pythonPath": "${config:python.pythonPath}",
11
            "program": "/home/mondejar/Dropbox/ECG/code/ecg_classification/python/basic_fusion.py",
12
            "cwd": "${workspaceRoot}",
13
            "env": {},
14
            "envFile": "${workspaceRoot}/.env",
15
            "debugOptions": [
16
                "WaitOnAbnormalExit",
17
                "WaitOnNormalExit",
18
                "RedirectOutput"
19
            ]
20
        }
21
    ]
22
}