diff --git a/lib/logitech_receiver/hidpp10.py b/lib/logitech_receiver/hidpp10.py index 8582ff88..99c2af75 100644 --- a/lib/logitech_receiver/hidpp10.py +++ b/lib/logitech_receiver/hidpp10.py @@ -189,7 +189,7 @@ def parse_battery_status(register, reply): else BATTERY_STATUS.recharging if status_byte == 0x50 else BATTERY_STATUS.full if status_byte == 0x90 else None) - return charge, status_text + return charge, status_text, None if register == REGISTERS.battery_status: status_byte = ord(reply[:1])