We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa3412e commit 2af8ef9Copy full SHA for 2af8ef9
extension/src/VisualizationBackend/PyVisualizationSupport.ts
@@ -95,9 +95,7 @@ export class PyVisualizationBackend extends VisualizationBackendBase {
95
let result = reply.result;
96
// remove the initial escape by the the debug session e.g. `''{"kind": {"text": true}, "text": "{"asdf1\'"}''`
97
result = result.replaceAll(/\\'/g, "'");
98
- result = result.replaceAll(/\\'/g, "'");
99
- result = result.replaceAll(/\\\\/g, "\\")
100
- result.substr(1, result.length - 2);
+ result = result.replaceAll(/\\\\/g, "\\");
101
102
return parseEvaluationResultFromGenericDebugAdapter(
103
result,
0 commit comments