src/eric7/CondaInterface/CondaNewEnvironmentDataDialog.py

branch
eric7
changeset 10689
3ede487187f2
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
--- a/src/eric7/CondaInterface/CondaNewEnvironmentDataDialog.py	Mon Apr 22 13:20:16 2024 +0200
+++ b/src/eric7/CondaInterface/CondaNewEnvironmentDataDialog.py	Mon Apr 22 15:15:36 2024 +0200
@@ -63,31 +63,31 @@
         self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(enable)
 
     @pyqtSlot(str)
-    def on_nameEdit_textChanged(self, txt):
+    def on_nameEdit_textChanged(self, _txt):
         """
         Private slot to handle changes of the logical name.
 
-        @param txt current text of the logical name entry
+        @param _txt current text of the logical name entry (unused)
         @type str
         """
         self.__updateOK()
 
     @pyqtSlot(str)
-    def on_condaNameEdit_textChanged(self, txt):
+    def on_condaNameEdit_textChanged(self, _txt):
         """
         Private slot to handle changes of the conda name.
 
-        @param txt current text of the conda name entry
+        @param _txt current text of the conda name entry (unused)
         @type str
         """
         self.__updateOK()
 
     @pyqtSlot(str)
-    def on_requirementsFilePicker_textChanged(self, txt):
+    def on_requirementsFilePicker_textChanged(self, _txt):
         """
         Private slot to handle changes of the requirements file name.
 
-        @param txt current text of the requirements file name entry
+        @param _txt current text of the requirements file name entry (unused)
         @type str
         """
         self.__updateOK()

eric ide

mercurial