Skip to content

Commit e3c06ee

Browse files
Clean code
1 parent 8afb68d commit e3c06ee

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/client/debugger/extension/configuration/providers/pyramidLaunch.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
'use strict';
55

6-
import * as vscode from 'vscode';
76
import * as path from 'path';
87
import * as fs from 'fs-extra';
8+
import { WorkspaceFolder } from 'vscode';
99
import { injectable } from 'inversify';
1010
import { DebugConfigStrings } from '../../../../common/utils/localize';
1111
import { MultiStepInput } from '../../../../common/utils/multiStepInput';
@@ -64,7 +64,7 @@ export class PyramidLaunchDebugConfigurationProvider implements IDebugConfigurat
6464
Object.assign(state.config, config);
6565
}
6666
public async validateIniPath(
67-
folder: vscode.WorkspaceFolder | undefined,
67+
folder: WorkspaceFolder | undefined,
6868
defaultValue: string,
6969
selected?: string,
7070
): Promise<string | undefined> {
@@ -84,7 +84,7 @@ export class PyramidLaunchDebugConfigurationProvider implements IDebugConfigurat
8484
}
8585
}
8686

87-
protected async getDevelopmentIniPath(folder: vscode.WorkspaceFolder | undefined): Promise<string | undefined> {
87+
protected async getDevelopmentIniPath(folder: WorkspaceFolder | undefined): Promise<string | undefined> {
8888
if (!folder) {
8989
return;
9090
}

0 commit comments

Comments
 (0)