Skip to content

Commit e0fbe00

Browse files
author
Fabian Tepe
committed
add debugpy to supportedDebugAdapters of PyEvaluationEngine
1 parent f4f2274 commit e0fbe00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extension/src/VisualizationBackend/PyVisualizationSupport.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export class PyEvaluationEngine implements DebugSessionVisualizationSupport {
2727
createBackend(
2828
session: DebugSessionProxy
2929
): VisualizationBackend | undefined {
30-
const supportedDebugAdapters = ["python"];
30+
const supportedDebugAdapters = ["python", "debugpy"];
3131

3232
if (supportedDebugAdapters.indexOf(session.session.type) !== -1) {
3333
return new PyVisualizationBackend(

0 commit comments

Comments
 (0)