Skip to content

Commit

Permalink
lsp-devtools: Align to upstream rename
Browse files Browse the repository at this point in the history
  • Loading branch information
alcarney committed Sep 11, 2023
1 parent 2255675 commit ed5f6d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/lsp-devtools/lsp_devtools/agent/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from typing import Optional

import stamina
from pygls.client import Client
from pygls.client import JsonRPCClient
from pygls.client import aio_readline
from pygls.protocol import default_converter

Expand All @@ -29,7 +29,7 @@
# asyncio.ensure_future(self._ws.send(data))


class AgentClient(Client):
class AgentClient(JsonRPCClient):
"""Client for connecting to an AgentServer instance."""

protocol: AgentProtocol
Expand Down
1 change: 0 additions & 1 deletion lib/lsp-devtools/lsp_devtools/agent/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import re
import threading
from typing import Any
from typing import Callable
from typing import Optional

from pygls.client import aio_readline
Expand Down

0 comments on commit ed5f6d8

Please sign in to comment.