sisoe24 / Python-Easy-Print

Found unhandled promise JS-0328
Bug risk
Major
1 occurrence in this check
Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the void operator
53    for (const [key, statement] of Object.entries(PRINT_COMMANDS)) {
54        context.subscriptions.push(
55            vscode.commands.registerCommand(statement.command, () => {
56                executeCommand(statement.statement);57            })
58        );
59    }