You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My attempts to install the debugpy adapter resulted in the error message TypeError: list indices must be integers or slices, not str. After poking around, I figured out that the problem was in modules/adapters/python.py on line 19. It seems that the structure of debugpy_info has changed and now the value of debugpy_info['any'] is a list not a dict:
Also ran into this issue. I'm not really familiar with how this (packages etc.) works under the hood in ST4. @cwjohnson42, may I ask what was your approach with your fix? I assume you did some things manually. I have had a look at the code, but don't know the steps to fix it manually. I would also be happy to read some general documentation about it if there is something available.
My attempts to install the debugpy adapter resulted in the error message
TypeError: list indices must be integers or slices, not str
. After poking around, I figured out that the problem was inmodules/adapters/python.py
on line 19. It seems that the structure ofdebugpy_info
has changed and now the value ofdebugpy_info['any']
is alist
not adict
:I was able to fix the error by replacing the line with
but that may not be the best permanent solution.
The text was updated successfully, but these errors were encountered: