Remove references to BLEClient breaking CI checks

This commit is contained in:
William Stearns
2024-07-09 19:54:01 -04:00
parent a29ee840f2
commit 60de9dddb1

View File

@@ -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()