Skip to content

Commit a10b363

Browse files
committed
Fix using wrong interface
Signed-off-by: paulober <[email protected]>
1 parent 38172ea commit a10b363

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/newProject.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Command } from "./command.mjs";
1+
import { CommandWithArgs } from "./command.mjs";
22
import Logger from "../logger.mjs";
33
import { window, type Uri } from "vscode";
44
import { NewProjectPanel } from "../webview/newProjectPanel.mjs";
@@ -15,7 +15,7 @@ export enum ProjectLang {
1515
micropython = 2,
1616
}
1717

18-
export default class NewProjectCommand extends Command {
18+
export default class NewProjectCommand extends CommandWithArgs {
1919
private readonly _logger: Logger = new Logger("NewProjectCommand");
2020
private readonly _extensionUri: Uri;
2121
private static readonly micropythonOption = "MicroPython";

0 commit comments

Comments
 (0)