<t>As Fabio Zadrozny suggested, you can change the environment variable, PYDEVD_WARN_SLOW_RESOLVE_TIMEOUT, to the preferred time.<br/>
<br/>
I fixed it by adding the following line to the "launch.json" file in Visual Studio Code.<br/>
<br/>
"env": {"PYDEVD_WARN_SLOW_RESOLVE_TIMEOUT": "2"}<br/>
<br/>
```<br/>
<br/>
So my "*launch.json*" looks something like this:<br/>
<br/>
```<br/>
...<br/>
"launch": {<br/>
"version": "0.2.0",<br/>
"configurations": [<br/>
{<br/>
"name": "Python: Current File",<br/>
"type": "python",<br/>
"request": "launch",<br/>
"program": "${file}",<br/>
"console": "integratedTerminal",<br/>
"env": {"PYDEVD_WARN_SLOW_RESOLVE_TIMEOUT": "2"}<br/>
}<br/>
]<br/>
}<br/>
...<br/>
<br/>
```</t>