Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sciencewhiz committed Aug 9, 2024
1 parent 63c8581 commit 76f4da7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vscode-wpilib/src/wpilibupdates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ export class WPILibUpdates {
const newVersion = await this.checkForLocalGradleRIOUpdate(grVersion);
const persistentState = WPILibUpdates.getUpdatePersistentState(wp);
if (newVersion !== undefined && persistentState.Value === false) {
const result = await vscode.window.showInformationMessage
(i18n('message', `This project is currently using WPILib version ({1}). Would you like to update the project ` +
const result = await vscode.window.showInformationMessage(i18n('message',
`This project is currently using WPILib version ({1}). Would you like to update the project ` +
`to WPILib version {0}?`, newVersion, grVersion), {
modal: true,
}, i18n('ui', 'Yes'), i18n('ui', 'No'), i18n('ui', 'No, Don\'t ask again'));
Expand Down Expand Up @@ -77,8 +77,8 @@ export class WPILibUpdates {
vscode.window.showInformationMessage(i18n('message', 'No WPILib Update Found'));
return false;
} else {
const result = await vscode.window.showInformationMessage
(i18n('message', `This project is currently using WPILib version ({1}). Would you like to update the project ` +
const result = await vscode.window.showInformationMessage(i18n('message',
`This project is currently using WPILib version ({1}). Would you like to update the project ` +
`to WPILib version {0}?`, newVersion.newVersion, grVersion), {
modal: true,
}, i18n('ui', 'Yes'), i18n('ui', 'No'));
Expand Down

0 comments on commit 76f4da7

Please sign in to comment.