Skip to content

Commit 1594daa

Browse files
committed
fix formatting
1 parent 6e8682c commit 1594daa

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/common/utils/pathUtils.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1-
import { NotebookCell, NotebookDocument, Uri, workspace } from 'vscode';
2-
import { isWindows } from '../../managers/common/utils';
31
import * as os from 'os';
42
import * as path from 'path';
5-
import { Uri } from 'vscode';
3+
import { NotebookCell, NotebookDocument, Uri, workspace } from 'vscode';
64
import { isWindows } from './platformUtils';
75

8-
96
export function checkUri(scope?: Uri | Uri[] | string): Uri | Uri[] | string | undefined {
107
if (!scope) {
118
return undefined;
@@ -60,7 +57,6 @@ function getComparisonKey(uri: Uri): string {
6057
.toString();
6158
}
6259

63-
6460
export function normalizePath(fsPath: string): string {
6561
const path1 = fsPath.replace(/\\/g, '/');
6662
if (isWindows()) {

0 commit comments

Comments
 (0)