Skip to content

Commit f78b242

Browse files
committed
formatting
1 parent df7efbe commit f78b242

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/managers/common/fastPath.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,7 @@ export interface FastPathResult {
3939
/**
4040
* Gets the fsPath for a scope by preferring the resolved project path when available.
4141
*/
42-
export function getProjectFsPathForScope(
43-
api: Pick<PythonEnvironmentApi, 'getPythonProject'>,
44-
scope: Uri,
45-
): string {
42+
export function getProjectFsPathForScope(api: Pick<PythonEnvironmentApi, 'getPythonProject'>, scope: Uri): string {
4643
return api.getPythonProject(scope)?.uri.fsPath ?? scope.fsPath;
4744
}
4845

@@ -90,7 +87,9 @@ export async function tryFastPathGet(opts: FastPathOptions): Promise<FastPathRes
9087
return { env: resolved };
9188
}
9289
} catch (err) {
93-
traceWarn(`[${opts.label}] Fast path resolve failed for '${persistedPath}', falling back to full init: ${err}`);
90+
traceWarn(
91+
`[${opts.label}] Fast path resolve failed for '${persistedPath}', falling back to full init: ${err}`,
92+
);
9493
}
9594
}
9695

0 commit comments

Comments
 (0)