We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4f2274 commit e0fbe00Copy full SHA for e0fbe00
extension/src/VisualizationBackend/PyVisualizationSupport.ts
@@ -27,7 +27,7 @@ export class PyEvaluationEngine implements DebugSessionVisualizationSupport {
27
createBackend(
28
session: DebugSessionProxy
29
): VisualizationBackend | undefined {
30
- const supportedDebugAdapters = ["python"];
+ const supportedDebugAdapters = ["python", "debugpy"];
31
32
if (supportedDebugAdapters.indexOf(session.session.type) !== -1) {
33
return new PyVisualizationBackend(
0 commit comments