Skip to content

Commit b64ff63

Browse files
committed
Remove extra await
1 parent 7a31074 commit b64ff63

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extensions/typescript-language-features/src/features/organizeImports.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class OrganizeImportsCommand implements Command {
4040
}
4141

4242
const edits = typeconverts.WorkspaceEdit.fromFileCodeEdits(this.client, response.body);
43-
return await vscode.workspace.applyEdit(edits);
43+
return vscode.workspace.applyEdit(edits);
4444
}
4545
}
4646

0 commit comments

Comments
 (0)