File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/client/common/installer Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ export class DataScienceInstaller extends BaseInstaller {
115115 public async install (
116116 product : Product ,
117117 interpreterUri ?: InterpreterUri ,
118- _cancel ?: CancellationToken
118+ cancel ?: CancellationToken
119119 ) : Promise < InstallerResponse > {
120120 // Precondition
121121 if ( isResource ( interpreterUri ) ) {
@@ -125,7 +125,7 @@ export class DataScienceInstaller extends BaseInstaller {
125125
126126 // At this point we know that `interpreterUri` is of type PythonInterpreter
127127 const interpreter = interpreterUri as PythonEnvironment ;
128- const result = await installer . install ( product , interpreter ) ;
128+ const result = await installer . install ( product , interpreter , cancel ) ;
129129
130130 if ( result === InstallerResponse . Disabled || result === InstallerResponse . Ignore ) {
131131 return result ;
You can’t perform that action at this time.
0 commit comments