This commit is contained in:
J. Nick Koston 2023-11-28 07:37:19 -06:00
parent 9d9754bd85
commit abae92a009
No known key found for this signature in database

View File

@ -463,8 +463,8 @@ class APIClient:
type(msg) # pylint: disable=unidiomatic-typecheck type(msg) # pylint: disable=unidiomatic-typecheck
is BluetoothDeviceConnectionResponse is BluetoothDeviceConnectionResponse
): ):
return msg.address == address return bool(msg.address == address)
return msg.address == address and msg.handle == handle return bool(msg.address == address and msg.handle == handle)
async def _send_bluetooth_message_await_response( async def _send_bluetooth_message_await_response(
self, self,