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 6c9e029 commit 1159078Copy full SHA for 1159078
src/lsp_client/capability/request/signature_help.py
@@ -3,6 +3,8 @@
3
from collections.abc import Sequence
4
from typing import Protocol, override, runtime_checkable
5
6
+import attrs
7
+
8
from lsp_client.jsonrpc.id import jsonrpc_uuid
9
from lsp_client.protocol import CapabilityClientProtocol, TextDocumentCapabilityProtocol
10
from lsp_client.utils.types import AnyPath, Position, lsp_type
@@ -109,7 +111,6 @@ async def request_active_signature(
109
111
it prefers the `active_parameter` from the top-level `SignatureHelp` response
110
112
over the one defined in `SignatureInformation`, following the LSP specification.
113
"""
- import attrs
114
115
res = await self.request_signature_help(
116
file_path,
0 commit comments