From 60de9dddb18cd7b5067db5269a5eea00b2187610 Mon Sep 17 00:00:00 2001 From: William Stearns Date: Tue, 9 Jul 2024 19:54:01 -0400 Subject: [PATCH] Remove references to BLEClient breaking CI checks --- meshtastic/ble_interface.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meshtastic/ble_interface.py b/meshtastic/ble_interface.py index 2bdc83d..b7e7230 100644 --- a/meshtastic/ble_interface.py +++ b/meshtastic/ble_interface.py @@ -118,10 +118,10 @@ class BLEInterface(MeshInterface): .replace(":", "") \ .lower() - def connect(self, address) -> BLEClient: + def connect(self, address): "Connect to a device by address" device = self.find_device(address) - client: BLEClient = BLEClient(device.address) + client = BLEClient(device.address) client.connect() try: client.pair()