mirror of
https://github.com/meshtastic/python.git
synced 2026-09-15 06:52:41 -04:00
Remove references to BLEClient breaking CI checks
This commit is contained in:
1 parent
a29ee840f2
commit
60de9dddb1
1 file changed
+2
-2
@@ -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