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:
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: