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 @@ -233,7 +233,7 @@ export class KernelService {
233
233
234
234
// If no active interpreter, just act like everything is okay as we can't find a new spec anyway
235
235
return true ;
236
- } ;
236
+ }
237
237
238
238
private async addMatchingSpec ( bestInterpreter : PythonInterpreter , cancelToken ?: CancellationToken ) : Promise < void > {
239
239
const displayName = localize . DataScience . historyTitle ( ) ;
@@ -294,7 +294,7 @@ export class KernelService {
294
294
return js && js . name === specName ;
295
295
} ) as JupyterKernelSpec ;
296
296
return match ? match . specFile : undefined ;
297
- } ;
297
+ }
298
298
299
299
//tslint:disable-next-line:cyclomatic-complexity
300
300
private findSpecMatch = async ( enumerator : ( ) => Promise < ( IJupyterKernelSpec | undefined ) [ ] > ) : Promise < IJupyterKernelSpec | undefined > => {
@@ -384,7 +384,7 @@ export class KernelService {
384
384
385
385
traceInfo ( `Found kernelspec match ${ bestSpec ? `${ bestSpec . name } ' '${ bestSpec . path } ` : 'undefined' } ` ) ;
386
386
return bestSpec ;
387
- } ;
387
+ }
388
388
389
389
private enumerateSpecs = async ( _cancelToken ?: CancellationToken ) : Promise < JupyterKernelSpec [ ] > => {
390
390
// Ignore errors if there are no kernels.
@@ -423,7 +423,7 @@ export class KernelService {
423
423
// This is failing for some folks. In that case return nothing
424
424
return [ ] ;
425
425
}
426
- } ;
426
+ }
427
427
private async getInterpreterDetailsFromProcess ( baseProcessName : string ) : Promise < PythonInterpreter | undefined > {
428
428
if ( path . basename ( baseProcessName ) !== baseProcessName ) {
429
429
// 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