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 9df2010 commit d3cdcbbCopy full SHA for d3cdcbb
src/lsp_client/capability/request/inlay_hint.py
@@ -10,7 +10,7 @@
10
CapabilityClientProtocol,
11
TextDocumentCapabilityProtocol,
12
)
13
-from lsp_client.utils.types import AnyPath, lsp_type
+from lsp_client.utils.types import AnyPath, Range, lsp_type
14
15
16
@runtime_checkable
@@ -76,7 +76,8 @@ def get_inlay_hint_label(
76
async def request_inlay_hint(
77
self,
78
file_path: AnyPath,
79
- range: lsp_type.Range,
+ range: Range,
80
+ *,
81
resolve: bool = False,
82
) -> Sequence[lsp_type.InlayHint] | None:
83
"""
0 commit comments