Skip to content

Commit

Permalink
fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
ms-jpq committed Dec 22, 2023
1 parent d4a58fa commit a0675c4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions coq/lsp/requests/request.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
Optional,
Sequence,
Tuple,
Type,
)

from pynvim_pp.lib import decode
Expand Down Expand Up @@ -83,8 +84,8 @@ async def _lsp_pull(
lo = 1
hi = n
while True:
part = await Nvim.api.exec_lua(
NoneType,
part: Sequence[Any] = await Nvim.api.exec_lua(
tuple,
f"return {NAMESPACE}.lsp_pull(...)",
(client, uid, lo, hi),
)
Expand Down

0 comments on commit a0675c4

Please sign in to comment.