Skip to content

Commit 58c9e3f

Browse files
committed
fix: lint
1 parent 8280fc1 commit 58c9e3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roborock/devices/traits/b01/props.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from typing import Any
55

66
from roborock import RoborockB01Methods
7-
from roborock.roborock_message import RoborockB01Props, RoborockDyadDataProtocol
7+
from roborock.roborock_message import RoborockB01Props
88

99
from ...b01_channel import send_decoded_command
1010
from ...mqtt_channel import MqttChannel
@@ -26,6 +26,6 @@ def __init__(self, channel: MqttChannel) -> None:
2626
"""Initialize the B01Props API."""
2727
self._channel = channel
2828

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

0 commit comments

Comments
 (0)