File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -161,7 +161,6 @@ export abstract class BaseKernel implements IKernel {
161
161
kernelConnectionMetadata ,
162
162
interruptTimeout ,
163
163
disposables ,
164
- controller ,
165
164
outputTracker ,
166
165
cellHashProviderFactory ,
167
166
context
Original file line number Diff line number Diff line change @@ -75,8 +75,7 @@ import {
75
75
KernelConnectionMetadata ,
76
76
KernelSocketInformation ,
77
77
LiveRemoteKernelConnectionMetadata ,
78
- LocalKernelSpecConnectionMetadata ,
79
- PythonKernelConnectionMetadata
78
+ LocalKernelConnectionMetadata
80
79
} from '../../kernels/types' ;
81
80
import { InteractiveWindowView } from '../constants' ;
82
81
import { CellExecutionCreator } from '../execution/cellExecutionCreator' ;
@@ -188,9 +187,7 @@ export class VSCodeNotebookController implements Disposable {
188
187
public flagRemoteKernelAsOutdated ( ) {
189
188
this . isConnectionOutdated = true ;
190
189
}
191
- public updateInterpreterDetails (
192
- kernelConnection : LocalKernelSpecConnectionMetadata | PythonKernelConnectionMetadata
193
- ) {
190
+ public updateInterpreterDetails ( kernelConnection : LocalKernelConnectionMetadata ) {
194
191
this . controller . label = getDisplayNameOrNameOfKernelConnection ( kernelConnection ) ;
195
192
}
196
193
public asWebviewUri ( localResource : Uri ) : Uri {
Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ export type LiveRemoteKernelConnectionMetadata = Readonly<{
191
191
* Connection metadata for Live Local Kernels.
192
192
* With this we are able connect to an existing kernel (instead of starting a new session).
193
193
*/
194
- export type LiveLocalKernelConnectionMetadata = Readonly < {
194
+ export type LiveLocalKernelConnectionMetadata = Readonly < {
195
195
/**
196
196
* Python interpreter will be used for intellisense & the like.
197
197
*/
You can’t perform that action at this time.
0 commit comments