Skip to content

Commit 4c2d626

Browse files
authored
chore(vscode): fix formatting issues (#4429)
1 parent e89fefd commit 4c2d626

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

vscode/extension/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export async function activate(context: vscode.ExtensionContext) {
9797
return
9898
case 'tcloud_bin_not_found':
9999
await handleTcloudBinNotFoundError()
100-
return
100+
return
101101
case 'generic':
102102
await vscode.window.showErrorMessage(
103103
`Failed to restart LSP: ${restartResult.error.message}`,

vscode/extension/src/utilities/errors.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export type ErrorType =
1010
| { type: 'generic'; message: string }
1111
| { type: 'not_signed_in' }
1212
| { type: 'sqlmesh_lsp_not_found' }
13-
// tcloud_bin_not_found is used when the tcloud executable is not found. This is likely to happen if the user
13+
// tcloud_bin_not_found is used when the tcloud executable is not found. This is likely to happen if the user
1414
// opens a project that has a `tcloud.yaml` file but doesn't have tcloud installed.
1515
| { type: 'tcloud_bin_not_found' }
1616
// sqlmesh_lsp_dependencies_missing is used when the sqlmesh_lsp is found but the lsp extras are missing.
@@ -91,6 +91,6 @@ export const handleTcloudBinNotFoundError = async (): Promise<void> => {
9191
hideFromUser: false,
9292
})
9393
terminal.show()
94-
terminal.sendText("pip install tcloud", false)
94+
terminal.sendText('pip install tcloud', false)
9595
}
9696
}

0 commit comments

Comments
 (0)