We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76625a1 commit bfee622Copy full SHA for bfee622
src/lsp_client/clients/__init__.py
@@ -1,23 +1,17 @@
1
from __future__ import annotations
2
3
-from .deno import DenoClient
4
from .pyrefly import PyreflyClient
5
from .pyright import PyrightClient
6
from .rust_analyzer import RustAnalyzerClient
7
-from .ty import TyClient
8
from .typescript import TypescriptClient
9
10
PythonClient = PyrightClient
11
RustClient = RustAnalyzerClient
12
TypeScriptClient = TypescriptClient
13
-DenoLSPClient = DenoClient
14
-TyLSPClient = TyClient
15
16
__all__ = [
17
- "DenoLSPClient",
18
"PyreflyClient",
19
"PythonClient",
20
"RustClient",
21
- "TyLSPClient",
22
"TypeScriptClient",
23
]
0 commit comments