src/eric7/MicroPython/ConnectionSelectionDialog.py

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
diff -r 3ede487187f2 -r fab36645aa7d src/eric7/MicroPython/ConnectionSelectionDialog.py
--- a/src/eric7/MicroPython/ConnectionSelectionDialog.py	Mon Apr 22 15:15:36 2024 +0200
+++ b/src/eric7/MicroPython/ConnectionSelectionDialog.py	Mon Apr 22 18:23:20 2024 +0200
@@ -81,21 +81,21 @@
         )
 
     @pyqtSlot(str)
-    def on_portNameComboBox_currentTextChanged(self, txt):
+    def on_portNameComboBox_currentTextChanged(self, _txt):
         """
         Private slot to handle the selection of a port name.
 
-        @param txt selected port
+        @param _txt selected port (unused)
         @type str
         """
         self.__updateOK()
 
     @pyqtSlot(str)
-    def on_deviceTypeComboBox_currentTextChanged(self, txt):
+    def on_deviceTypeComboBox_currentTextChanged(self, _txt):
         """
         Private slot to handle the selection of a device type.
 
-        @param txt selected device description
+        @param _txt selected device description (unused)
         @type str
         """
         self.__updateOK()

eric ide

mercurial