We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 203bd64 commit c676b56Copy full SHA for c676b56
1 file changed
roborock/cli.py
@@ -112,7 +112,8 @@ def on_message(bytes: bytes):
112
"""Callback function to handle incoming MQTT messages."""
113
# Decode the first 20 bytes of the message for display
114
bytes = bytes[:20]
115
- click.echo(f"Received message: b\"{bytes.decode('utf-8')}...\"")
+
116
+ click.echo(f"Received message: {bytes}...")
117
118
unsubs = []
119
for device in all_devices:
0 commit comments