Skip to content

Commit d3cdcbb

Browse files
committed
fix: update type
1 parent 9df2010 commit d3cdcbb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/lsp_client/capability/request/inlay_hint.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
CapabilityClientProtocol,
1111
TextDocumentCapabilityProtocol,
1212
)
13-
from lsp_client.utils.types import AnyPath, lsp_type
13+
from lsp_client.utils.types import AnyPath, Range, lsp_type
1414

1515

1616
@runtime_checkable
@@ -76,7 +76,8 @@ def get_inlay_hint_label(
7676
async def request_inlay_hint(
7777
self,
7878
file_path: AnyPath,
79-
range: lsp_type.Range,
79+
range: Range,
80+
*,
8081
resolve: bool = False,
8182
) -> Sequence[lsp_type.InlayHint] | None:
8283
"""

0 commit comments

Comments
 (0)