Skip to content

Commit 3387858

Browse files
committed
fix: remove query_values response
1 parent 7a2b8e2 commit 3387858

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

roborock/devices/traits/b01/props.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from __future__ import annotations
22

33
import logging
4-
from typing import Any
54

65
from roborock import RoborockB01Methods
76
from roborock.roborock_message import RoborockB01Props
@@ -26,6 +25,6 @@ def __init__(self, channel: MqttChannel) -> None:
2625
"""Initialize the B01Props API."""
2726
self._channel = channel
2827

29-
async def query_values(self, props: list[RoborockB01Props]) -> dict[int, Any]:
28+
async def query_values(self, props: list[RoborockB01Props]) -> None:
3029
"""Query the device for the values of the given Dyad protocols."""
31-
return await send_decoded_command(self._channel, dps=10000, command=RoborockB01Methods.GET_PROP, params=props)
30+
await send_decoded_command(self._channel, dps=10000, command=RoborockB01Methods.GET_PROP, params=props)

0 commit comments

Comments
 (0)