Skip to content

Commit

Permalink
Fix using wrong interface
Browse files Browse the repository at this point in the history
Signed-off-by: paulober <[email protected]>
  • Loading branch information
paulober committed Sep 6, 2024
1 parent c3af84c commit ec2a74a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/newProject.mts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Command } from "./command.mjs";
import { CommandWithArgs } from "./command.mjs";
import Logger from "../logger.mjs";
import { window, type Uri } from "vscode";
import { NewProjectPanel } from "../webview/newProjectPanel.mjs";
Expand All @@ -15,7 +15,7 @@ export enum ProjectLang {
micropython = 2,
}

export default class NewProjectCommand extends Command {
export default class NewProjectCommand extends CommandWithArgs {
private readonly _logger: Logger = new Logger("NewProjectCommand");
private readonly _extensionUri: Uri;
private static readonly micropythonOption = "MicroPython";
Expand Down

0 comments on commit ec2a74a

Please sign in to comment.