mirror of
https://github.com/meshtastic/python.git
synced 2026-01-10 16:57:58 -05:00
Remove references to BLEClient breaking CI checks
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user