Skip to content

Commit 87b128a

Browse files
committed
fix: Use TypescriptClient as default typescript client
1 parent 43609c6 commit 87b128a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/lsp_client/clients/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@
22

33
from typing import Final
44

5-
from .deno import DenoClient
65
from .pyrefly import PyreflyClient
76
from .pyright import PyrightClient
87
from .rust_analyzer import RustAnalyzerClient
98
from .typescript import TypescriptClient
109

1110
clients: Final = (
12-
DenoClient,
1311
PyreflyClient,
1412
PyrightClient,
1513
RustAnalyzerClient,
@@ -18,7 +16,7 @@
1816

1917
PythonClient = PyrightClient
2018
RustClient = RustAnalyzerClient
21-
TypeScriptClient = DenoClient
19+
TypeScriptClient = TypescriptClient
2220

2321
__all__ = [
2422
"PythonClient",

0 commit comments

Comments
 (0)