@@ -18,7 +18,6 @@ import { InstallPythonCommand } from '../../client/interpreter/configuration/int
18
18
import { InstallPythonViaTerminal } from '../../client/interpreter/configuration/interpreterSelector/commands/installPython/installPythonViaTerminal' ;
19
19
import { ResetInterpreterCommand } from '../../client/interpreter/configuration/interpreterSelector/commands/resetInterpreter' ;
20
20
import { SetInterpreterCommand } from '../../client/interpreter/configuration/interpreterSelector/commands/setInterpreter' ;
21
- import { SetShebangInterpreterCommand } from '../../client/interpreter/configuration/interpreterSelector/commands/setShebangInterpreter' ;
22
21
import { InterpreterSelector } from '../../client/interpreter/configuration/interpreterSelector/interpreterSelector' ;
23
22
import { PythonPathUpdaterService } from '../../client/interpreter/configuration/pythonPathUpdaterService' ;
24
23
import { PythonPathUpdaterServiceFactory } from '../../client/interpreter/configuration/pythonPathUpdaterServiceFactory' ;
@@ -29,15 +28,9 @@ import {
29
28
IPythonPathUpdaterServiceFactory ,
30
29
IPythonPathUpdaterServiceManager ,
31
30
} from '../../client/interpreter/configuration/types' ;
32
- import {
33
- IInterpreterDisplay ,
34
- IInterpreterHelper ,
35
- IInterpreterService ,
36
- IShebangCodeLensProvider ,
37
- } from '../../client/interpreter/contracts' ;
31
+ import { IInterpreterDisplay , IInterpreterHelper , IInterpreterService } from '../../client/interpreter/contracts' ;
38
32
import { InterpreterDisplay } from '../../client/interpreter/display' ;
39
33
import { InterpreterLocatorProgressStatubarHandler } from '../../client/interpreter/display/progressDisplay' ;
40
- import { ShebangCodeLensProvider } from '../../client/interpreter/display/shebangCodeLensProvider' ;
41
34
import { InterpreterHelper } from '../../client/interpreter/helpers' ;
42
35
import { InterpreterService } from '../../client/interpreter/interpreterService' ;
43
36
import { registerTypes } from '../../client/interpreter/serviceRegistry' ;
@@ -56,7 +49,6 @@ suite('Interpreters - Service Registry', () => {
56
49
[ IExtensionSingleActivationService , SetInterpreterCommand ] ,
57
50
[ IInterpreterQuickPick , SetInterpreterCommand ] ,
58
51
[ IExtensionSingleActivationService , ResetInterpreterCommand ] ,
59
- [ IExtensionSingleActivationService , SetShebangInterpreterCommand ] ,
60
52
61
53
[ IExtensionActivationService , VirtualEnvironmentPrompt ] ,
62
54
@@ -66,7 +58,6 @@ suite('Interpreters - Service Registry', () => {
66
58
[ IPythonPathUpdaterServiceFactory , PythonPathUpdaterServiceFactory ] ,
67
59
[ IPythonPathUpdaterServiceManager , PythonPathUpdaterService ] ,
68
60
[ IInterpreterSelector , InterpreterSelector ] ,
69
- [ IShebangCodeLensProvider , ShebangCodeLensProvider ] ,
70
61
[ IInterpreterHelper , InterpreterHelper ] ,
71
62
[ IInterpreterComparer , EnvironmentTypeComparer ] ,
72
63
0 commit comments