File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import * as vscode from 'vscode' ;
4
4
import * as proxy from './jediProxy' ;
5
- import * as telemetryContracts from "../common/telemetryContracts" ;
6
5
import { highlightCode } from './jediHelpers' ;
7
6
import { EOL } from 'os' ;
8
7
@@ -16,8 +15,7 @@ export class PythonHoverProvider implements vscode.HoverProvider {
16
15
let results = [ ] ;
17
16
let capturedInfo : string [ ] = [ ] ;
18
17
data . items . forEach ( item => {
19
- let { description, signature } = item ;
20
- const rawSignature = signature ;
18
+ let { signature } = item ;
21
19
switch ( item . kind ) {
22
20
case vscode . SymbolKind . Constructor :
23
21
case vscode . SymbolKind . Function :
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ function lookForInterpretersInVirtualEnvs(pathToCheck: string): Promise<PythonPa
119
119
Promise . all < string [ ] > ( promises ) . then ( pathsWithInterpreters => {
120
120
pathsWithInterpreters . forEach ( interpreters => {
121
121
interpreters . map ( interpreter => {
122
- let venvName = path . basename ( path . dirname ( path . dirname ( interpreter ) ) )
122
+ let venvName = path . basename ( path . dirname ( path . dirname ( interpreter ) ) ) ;
123
123
envsInterpreters . push ( {
124
124
label : `${ venvName } - ${ path . basename ( interpreter ) } ` ,
125
125
path : interpreter ,
You can’t perform that action at this time.
0 commit comments