Skip to content

Commit f052052

Browse files
authored
Fix lint errors (#7197)
1 parent b93010d commit f052052

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/github/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
*--------------------------------------------------------------------------------------------*/
55
'use strict';
66

7-
import * as OctokitTypes from '@octokit/types';
87
import * as crypto from 'crypto';
8+
import * as OctokitTypes from '@octokit/types';
99
import * as vscode from 'vscode';
1010
import { Repository } from '../api/api';
1111
import { GitApiImpl } from '../api/api1';

src/lm/tools/copilotRemoteAgentTool.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export class CopilotRemoteAgentTool implements vscode.LanguageModelTool<CopilotR
7070
new vscode.LanguageModelTextPart(vscode.l10n.t('Invalid pull request number: {0}', existingPullRequest))
7171
]);
7272
}
73-
const result = await this.manager.addFollowUpToExistingPR(pullRequestNumber, title, body);
73+
await this.manager.addFollowUpToExistingPR(pullRequestNumber, title, body);
7474
return new vscode.LanguageModelToolResult([
7575
new vscode.LanguageModelTextPart(vscode.l10n.t('Follow-up added to pull request #{0}.', pullRequestNumber)),
7676
]);

0 commit comments

Comments
 (0)