sisoe24 / Python-Easy-Print

Found unused variables in TypeScript code JS-0356
Performance
Major
1 occurrence in this check
'key' is assigned a value but never used
50
51export function activate(context: vscode.ExtensionContext): void {
52    // Print Commands
53    for (const [key, statement] of Object.entries(PRINT_COMMANDS)) {54        context.subscriptions.push(
55            vscode.commands.registerCommand(statement.command, () => {
56                executeCommand(statement.statement);