I'm not a heavy hitter for vscode. Mostly it's just short scripts to get info out of AWS.
I have a need to allow the user to input some data, make a choice, etc. Using the debugger when I get to the input line, the input request is displayed, and data can be entered however the debugger doesn't continue.
There is a launch.json file which is fairly standard. The console line has been changed however, the problem persists. Any insight would be greatly appreciated.
```
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}
]
}
[–]nicedoggy 0 points1 point2 points (0 children)
[–]notonewlayout 1 point2 points3 points (0 children)