Remove extra await

This commit is contained in:
Matt Bierner
2018-07-12 22:16:01 -07:00
parent 7a31074ee4
commit b64ff63750

View File

@@ -40,7 +40,7 @@ class OrganizeImportsCommand implements Command {
}
const edits = typeconverts.WorkspaceEdit.fromFileCodeEdits(this.client, response.body);
return await vscode.workspace.applyEdit(edits);
return vscode.workspace.applyEdit(edits);
}
}