Skip to content

Commit

Permalink
More fix
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-simpson committed Aug 15, 2024
1 parent b2ab77d commit 525ec06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/linkplay/endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ class LinkPlayTcpUartEndpoint(LinkPlayEndpoint):
def __init__(self, *, endpoint: str):
self._host: str = endpoint

async def request(self, command: str) -> str | None:
return await call_tcpuart(self._host, command)
async def request(self, command: str) -> None:
await call_tcpuart(self._host, command)

async def json_request(self, command: str) -> dict[str, str]:
return await call_tcpuart_json(self._host, command)
Expand Down

0 comments on commit 525ec06

Please sign in to comment.