src/eric7/MicroPython/ConnectionSelectionDialog.py

branch
eric7
changeset 9765
6378da868bb0
parent 9759
4543b7876047
child 10439
21c28b0f9e41
--- a/src/eric7/MicroPython/ConnectionSelectionDialog.py	Tue Feb 14 11:09:49 2023 +0100
+++ b/src/eric7/MicroPython/ConnectionSelectionDialog.py	Tue Feb 14 18:10:30 2023 +0100
@@ -52,9 +52,7 @@
             self.portNameComboBox.setItemData(index, (vid, pid), self.VidPidRole)
 
         self.deviceTypeComboBox.addItem("", "")
-        for board, description in sorted(
-            getSupportedDevices(), key=lambda x: x[1]
-        ):
+        for board, description in sorted(getSupportedDevices(), key=lambda x: x[1]):
             self.deviceTypeComboBox.addItem(description, board)
 
         if self.portNameComboBox.currentText():

eric ide

mercurial