feat: implement port reconfiguration for webclients (#586)

Signed-off-by: Dominik Willner <th33xitus@gmail.com>
This commit is contained in:
dw-0
2024-10-24 12:25:44 +02:00
committed by GitHub
parent 2df364512b
commit 81b7b156b9
7 changed files with 205 additions and 45 deletions

View File

@@ -53,8 +53,8 @@ def print_client_port_select_dialog(
dialog_content.extend(
[
"\n\n",
"The following ports were found to be in use already:",
*[f"{port}" for port in ports_in_use],
"The following ports were found to be already in use:",
*[f"{p}" for p in ports_in_use if p != port],
]
)