File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments