Skip to content

Commit 4bbd5af

Browse files
committed
Fix LGTM warning
1 parent ccffbb8 commit 4bbd5af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extensions/ql-vscode/src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { spawnIdeServer } from './ide-server';
1111
import { InterfaceManager, WebviewReveal } from './interface';
1212
import { ideServerLogger, logger, queryServerLogger } from './logging';
1313
import { compileAndRunQueryAgainstDatabase, EvaluationInfo, tmpDirDisposal, UserCancellationException } from './queries';
14-
import { QueryHistoryItem, QueryHistoryManager } from './query-history';
14+
import { QueryHistoryManager } from './query-history';
1515
import * as qsClient from './queryserver-client';
1616
import { CodeQLCliServer } from './cli';
1717
import { assertNever } from './helpers-pure';
@@ -78,7 +78,7 @@ export async function activate(ctx: ExtensionContext): Promise<void> {
7878
const distributionManager = new DistributionManager(ctx, distributionConfigListener, DEFAULT_DISTRIBUTION_VERSION_CONSTRAINT);
7979

8080
const shouldUpdateOnNextActivationKey = "shouldUpdateOnNextActivation";
81-
81+
8282
registerErrorStubs(ctx, [checkForUpdatesCommand], command => () => {
8383
helpers.showAndLogErrorMessage(`Can't execute ${command}: waiting to finish loading CodeQL CLI.`);
8484
});

0 commit comments

Comments
 (0)