File tree Expand file tree Collapse file tree 3 files changed +3
-35
lines changed
Expand file tree Collapse file tree 3 files changed +3
-35
lines changed Original file line number Diff line number Diff line change 11from __future__ import annotations
22
3- from attrs import frozen
4-
53from .abc import Server
64from .container import ContainerServer
7- from .exception import ServerError , ServerInstallationError , ServerRuntimeError
5+ from .default import DefaultServers
6+ from .error import ServerError , ServerInstallationError , ServerRuntimeError
87from .local import LocalServer
98from .socket import SocketServer
109
11-
12- @frozen
13- class DefaultServers :
14- local : LocalServer
15- container : ContainerServer
16-
17-
1810__all__ = [
1911 "ContainerServer" ,
2012 "DefaultServers" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1919from lsp_client .utils .workspace import Workspace
2020
2121from .abc import Server
22- from .exception import ServerRuntimeError
22+ from .error import ServerRuntimeError
2323
2424
2525class EnsureInstalledProtocol (Protocol ):
You can’t perform that action at this time.
0 commit comments