Skip to content

Commit a646550

Browse files
fmt and style
1 parent 86a1e77 commit a646550

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

sqlmesh/lsp/main.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
from pygls.server import LanguageServer
1616
from sqlmesh._version import __version__
1717
from sqlmesh.core.context import Context
18-
from sqlmesh.core import constants as c
1918
from sqlmesh.utils.date import to_timestamp
2019
from sqlmesh.lsp.api import (
2120
API_FEATURE,
@@ -214,9 +213,7 @@ def _custom_get_environments(
214213
default_target_environment="",
215214
)
216215

217-
def _custom_get_models(
218-
self, ls: LanguageServer, params: GetModelsRequest
219-
) -> GetModelsResponse:
216+
def _custom_get_models(self, ls: LanguageServer, params: GetModelsRequest) -> GetModelsResponse:
220217
"""Get all models available for table diff."""
221218
try:
222219
context = self._context_get_or_load()

vscode/extension/src/lsp/custom.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ interface AllModelsResponse extends BaseResponse {
4646
keywords: string[]
4747
}
4848

49-
5049
export interface AbstractAPICallRequest {
5150
endpoint: string
5251
method: string

0 commit comments

Comments
 (0)