File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 } ` ,
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments