Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 68781ae

Browse files
committed
fix some more lints
1 parent 1ee7f54 commit 68781ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editors/code/src/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ export function addProject(ctx: CtxInit): Cmd {
878878
}
879879

880880
const command = `${extensionName}.discoverWorkspaceCommand`;
881-
const project = await vscode.commands.executeCommand(command);
881+
const project: JsonProject = await vscode.commands.executeCommand(command);
882882

883883
ctx.addToDiscoveredWorkspaces([project]);
884884

0 commit comments

Comments
 (0)