File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/extension/debugger/configuration/resolvers Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ export class AttachConfigurationResolver extends BaseConfigurationResolver<Attac
50
50
true ,
51
51
) ;
52
52
}
53
- if ( debugConfiguration . variablePresentation == undefined ) {
53
+ if ( debugConfiguration . variablePresentation === undefined ) {
54
54
debugConfiguration . variablePresentation = getConfiguration ( 'debugpy' , workspaceFolder ) . get < object > (
55
55
'debugVariablePresentation' ,
56
56
{ } ,
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ export class LaunchConfigurationResolver extends BaseConfigurationResolver<Launc
114
114
true ,
115
115
) ;
116
116
}
117
- if ( debugConfiguration . variablePresentation == undefined ) {
117
+ if ( debugConfiguration . variablePresentation === undefined ) {
118
118
debugConfiguration . variablePresentation = getConfiguration ( 'debugpy' , workspaceFolder ) . get < object > (
119
119
'debugVariablePresentation' ,
120
120
{ } ,
You can’t perform that action at this time.
0 commit comments