Skip to content

Commit 8476a94

Browse files
authored
Fix prettier lints
1 parent 3e9845d commit 8476a94

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,10 @@ const gitPullerExtension: JupyterFrontEndPlugin<void> = {
6161

6262
let puller: GitPuller | null = null;
6363

64-
const basePath = PathExt.join(defaultFileBrowser.model.path, PathExt.basename(repo));
64+
const basePath = PathExt.join(
65+
defaultFileBrowser.model.path,
66+
PathExt.basename(repo)
67+
);
6568
const branch = urlParams.get('branch') || 'main';
6669
const provider = urlParams.get('provider') || 'github';
6770
let filePath = urlParams.get('urlpath');

0 commit comments

Comments
 (0)