File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/client/interpreter/display Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,8 @@ import { IS_WINDOWS } from '../../common/utils';
7
7
import { getFirstNonEmptyLineFromMultilineString } from '../../interpreter/helpers' ;
8
8
9
9
export class ShebangCodeLensProvider implements vscode . CodeLensProvider {
10
- public onDidChangeCodeLenses : vscode . Event < void > = vscode . workspace . onDidChangeConfiguration ;
10
+ // tslint:disable-next-line:prefer-type-cast no-any
11
+ public onDidChangeCodeLenses : vscode . Event < void > = vscode . workspace . onDidChangeConfiguration as any as vscode . Event < void > ;
11
12
// tslint:disable-next-line:function-name
12
13
public static async detectShebang ( document : TextDocument ) : Promise < string | undefined > {
13
14
const firstLine = document . lineAt ( 0 ) ;
You can’t perform that action at this time.
0 commit comments