Skip to content

Commit d4a03ef

Browse files
committed
style: fix ruff formatting for BleakClient constructor call
1 parent 728a6ab commit d4a03ef

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

  • custom_components/meshtastic/aiomeshtastic/connection

custom_components/meshtastic/aiomeshtastic/connection/bluetooth.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,7 @@ def __init__(
6363

6464
async def _connect(self) -> None:
6565
target = self._ble_device if self._ble_device is not None else self._ble_address
66-
self._bleak_client = BleakClient(
67-
target, timeout=self._connect_timeout, backend=self._bleak_client_backend
68-
)
66+
self._bleak_client = BleakClient(target, timeout=self._connect_timeout, backend=self._bleak_client_backend)
6967
await self._bleak_client.connect()
7068

7169
# attempt pairing, we don't know if it is required. Should not harm if

0 commit comments

Comments
 (0)