base: drop the extra function for checking if the device is in register mode

Now that it's just a one-liner, we don't need an extra function
pull/147/head
Peter Hutterer 2019-07-17 10:06:37 +10:00
parent 37b9b2eefa
commit 08e3ec532e
1 changed files with 5 additions and 8 deletions

View File

@ -331,13 +331,6 @@ class Tuhi(GObject.Object):
for addr in unregistered:
del self.devices[addr]
@classmethod
def _device_in_register_mode(cls, bluez_device):
# When the device is in register mode (blue light blinking), the
# manufacturer is merely 4 bytes. This will reset to 7 bytes even
# when the device simply times out and does not register fully.
return len(bluez_device.manufacturer_data or []) == 4
def _on_bluez_discovery_started(self, manager):
# Something else may turn discovery mode on, we don't care about
# it then
@ -380,7 +373,11 @@ class Tuhi(GObject.Object):
# if we got here from a currently live BlueZ device,
# ManufacturerData is reliable. Else, consider the device not in
# register mode
if from_live_update and Tuhi._device_in_register_mode(bluez_device):
#
# When the device is in register mode (blue light blinking), the
# manufacturer is merely 4 bytes. This will reset to 7 bytes even
# when the device simply times out and does not register fully.
if from_live_update and len(bluez_device.manufacturer_data or []) == 4:
mode = DeviceMode.REGISTER
else:
mode = DeviceMode.LISTEN