Skip to content

Commit c2b1fa8

Browse files
Fix package json
1 parent 6861a9c commit c2b1fa8

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,18 +59,18 @@
5959
"commandPalette": [
6060
{
6161
"category": "Debugpy",
62-
"command": "python.clearCacheAndReload",
62+
"command": "debugpy.clearCacheAndReload",
6363
"title": "%debugpy.command.clearCacheAndReload.title%"
6464
},
6565
{
6666
"category": "Debugpy",
67-
"command": "python.debugInTerminal",
67+
"command": "debugpy.debugInTerminal",
6868
"icon": "$(debug-alt)",
6969
"title": "%debugpy.command.debugInTerminal.title%"
7070
},
7171
{
7272
"category": "Debugpy",
73-
"command": "python.viewOutput",
73+
"command": "debugpy.viewOutput",
7474
"title": "%debugpy.command.viewOutput.title%"
7575
}
7676
]
@@ -414,7 +414,7 @@
414414
],
415415
"type": "debugpy",
416416
"variables": {
417-
"pickProcess": "debupy.pickLocalProcess"
417+
"pickProcess": "debugpy.pickLocalProcess"
418418
},
419419
"when": "!virtualWorkspace && shellExecutionSupported"
420420
}

src/extension/common/types.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
'use strict';
66

77
import { ExtensionContext, Memento } from 'vscode';
8-
import { EnvironmentVariables } from './variables/types';
98

109
export interface IDisposable {
1110
// eslint-disable-next-line @typescript-eslint/no-explicit-any

src/extension/extension.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
// This line should always be right on top.
66

7-
// if ((Reflect as any).metadata === undefined) {
8-
// require('reflect-metadata');
9-
// }
7+
if ((Reflect as any).metadata === undefined) {
8+
require('reflect-metadata');
9+
}
1010

1111
import { registerDebugger } from './extensionInit';
1212
import { IExtensionContext } from './common/types';

0 commit comments

Comments
 (0)