Skip to content

Commit 96c26e5

Browse files
authored
Merge pull request #243 from Fabitepe/master
add debugpy to supportedDebugAdapters of PyEvaluationEngine
2 parents f4f2274 + e0fbe00 commit 96c26e5

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)