From 525ec06f4fbbbe0b2c7aedbc11a3ae2db72d18f2 Mon Sep 17 00:00:00 2001 From: Dan Simpson Date: Thu, 15 Aug 2024 17:14:56 +1000 Subject: [PATCH] More fix --- src/linkplay/endpoint.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/linkplay/endpoint.py b/src/linkplay/endpoint.py index 2921648..54c270c 100644 --- a/src/linkplay/endpoint.py +++ b/src/linkplay/endpoint.py @@ -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)