File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/client/datascience/jupyter/kernels Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -263,7 +263,7 @@ export class KernelService {
263
263
264
264
// If no active interpreter, just act like everything is okay as we can't find a new spec anyway
265
265
return true ;
266
- } ;
266
+ }
267
267
268
268
private async addMatchingSpec ( bestInterpreter : PythonInterpreter , cancelToken ?: CancellationToken ) : Promise < void > {
269
269
const displayName = localize . DataScience . historyTitle ( ) ;
@@ -324,7 +324,7 @@ export class KernelService {
324
324
return js && js . name === specName ;
325
325
} ) as JupyterKernelSpec ;
326
326
return match ? match . specFile : undefined ;
327
- } ;
327
+ }
328
328
329
329
//tslint:disable-next-line:cyclomatic-complexity
330
330
private findSpecMatch = async ( enumerator : ( ) => Promise < ( IJupyterKernelSpec | undefined ) [ ] > ) : Promise < IJupyterKernelSpec | undefined > => {
@@ -414,7 +414,7 @@ export class KernelService {
414
414
415
415
traceInfo ( `Found kernelspec match ${ bestSpec ? `${ bestSpec . name } ' '${ bestSpec . path } ` : 'undefined' } ` ) ;
416
416
return bestSpec ;
417
- } ;
417
+ }
418
418
419
419
private enumerateSpecs = async ( _cancelToken ?: CancellationToken ) : Promise < JupyterKernelSpec [ ] > => {
420
420
// Ignore errors if there are no kernels.
@@ -455,7 +455,7 @@ export class KernelService {
455
455
// This is failing for some folks. In that case return nothing
456
456
return [ ] ;
457
457
}
458
- } ;
458
+ }
459
459
private async getInterpreterDetailsFromProcess ( baseProcessName : string ) : Promise < PythonInterpreter | undefined > {
460
460
if ( path . basename ( baseProcessName ) !== baseProcessName ) {
461
461
// This function should only be called with a non qualified path. We're using this
You can’t perform that action at this time.
0 commit comments