Skip to content

Commit 4029cc9

Browse files
wip
Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
1 parent 8947a10 commit 4029cc9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

core/services/wifi/wifi_handlers/networkmanager/networkmanager.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,9 @@ async def _find_existing_connection(self, credentials: WifiCredentials) -> Optio
297297
# Check if connection is compatible with this interface
298298
conn_iface = profile.connection.interface_name if profile.connection else None
299299
if conn_iface and conn_iface != self._interface_name:
300-
logger.debug(f"Skipping connection for {credentials.ssid}: bound to {conn_iface}, not {self._interface_name}")
300+
logger.debug(
301+
f"Skipping connection for {credentials.ssid}: bound to {conn_iface}, not {self._interface_name}"
302+
)
301303
continue
302304

303305
# If no password provided, we can use any existing connection

0 commit comments

Comments
 (0)