src/eric7/SqlBrowser/SqlConnectionDialog.py

branch
eric7
changeset 10692
9becf9ca115c
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
diff -r d1a603a70f83 -r 9becf9ca115c src/eric7/SqlBrowser/SqlConnectionDialog.py
--- a/src/eric7/SqlBrowser/SqlConnectionDialog.py	Tue Apr 23 09:29:13 2024 +0200
+++ b/src/eric7/SqlBrowser/SqlConnectionDialog.py	Tue Apr 23 11:26:04 2024 +0200
@@ -72,21 +72,21 @@
             self.okButton.setEnabled(True)
 
     @pyqtSlot(int)
-    def on_driverCombo_activated(self, index):
+    def on_driverCombo_activated(self, _index):
         """
         Private slot handling the selection of a database driver.
 
-        @param index index of the selected entry
+        @param _index index of the selected entry (unused)
         @type int
         """
         self.__updateDialog()
 
     @pyqtSlot(str)
-    def on_databasePicker_textChanged(self, txt):
+    def on_databasePicker_textChanged(self, _txt):
         """
         Private slot handling the change of the database name.
 
-        @param txt text of the edit
+        @param _txt text of the edit (unused)
         @type str
         """
         self.__updateDialog()

eric ide

mercurial