Skip to content

Commit 6b843be

Browse files
committed
fix: Update pydoc for sending a raw command
1 parent abb2a94 commit 6b843be

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

roborock/devices/v1_channel.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,10 +157,9 @@ async def send_decoded_command(
157157
return await self._send_mqtt_decoded_command(method, response_type=response_type, params=params)
158158

159159
async def _send_mqtt_raw_command(self, method: CommandType, params: ParamsType | None = None) -> dict[str, Any]:
160-
"""Send a raw command without response handling."""
160+
"""Send a raw command and return a raw unparsed response."""
161161
message = self._mqtt_payload_encoder(method, params)
162162
_LOGGER.debug("Sending MQTT message for device %s: %s", self._device_uid, message)
163-
_LOGGER.debug("Channel=%s", self._mqtt_channel)
164163
response = await self._mqtt_channel.send_command(message)
165164
return decode_rpc_response(response)
166165

0 commit comments

Comments
 (0)