Skip to content

Commit a807cd6

Browse files
authored
Remove extraneous async
1 parent 0f6ec1a commit a807cd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ const gitPullerExtension: JupyterFrontEndPlugin<void> = {
9797
return;
9898
}
9999

100-
puller.clone(repoUrl.href, branch, basePath).then(async repoPath => {
100+
puller.clone(repoUrl.href, branch, basePath).then(repoPath => {
101101
if (filePath) {
102102
app.commands.execute('filebrowser:open-path', {
103103
path: PathExt.join(repoPath, filePath)

0 commit comments

Comments
 (0)