src/eric7/Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py

branch
eric7
changeset 10690
fab36645aa7d
parent 10621
f5631f40c4d9
child 11090
f5f5f5803935
diff -r 3ede487187f2 -r fab36645aa7d src/eric7/Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py
--- a/src/eric7/Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py	Mon Apr 22 15:15:36 2024 +0200
+++ b/src/eric7/Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py	Mon Apr 22 18:23:20 2024 +0200
@@ -500,41 +500,41 @@
         self.__okButton.setEnabled(setOn)
 
     @pyqtSlot(bool)
-    def on_qtHelpGroup_toggled(self, enabled):
+    def on_qtHelpGroup_toggled(self, _enabled):
         """
         Private slot to toggle the generation of QtHelp files.
 
-        @param enabled flag indicating the state
+        @param _enabled flag indicating the state (unused)
         @type bool
         """
         self.__checkQtHelpOptions()
 
     @pyqtSlot(str)
-    def on_qtHelpNamespaceEdit_textChanged(self, txt):
+    def on_qtHelpNamespaceEdit_textChanged(self, _txt):
         """
         Private slot to check the namespace.
 
-        @param txt text of the line edit
+        @param _txt text of the line edit (unused)
         @type str
         """
         self.__checkQtHelpOptions()
 
     @pyqtSlot(str)
-    def on_qtHelpFolderEdit_textChanged(self, txt):
+    def on_qtHelpFolderEdit_textChanged(self, _txt):
         """
         Private slot to check the virtual folder.
 
-        @param txt text of the line edit
+        @param _txt text of the line edit (unused)
         @type str
         """
         self.__checkQtHelpOptions()
 
     @pyqtSlot(str)
-    def on_qtHelpTitleEdit_textChanged(self, txt):
+    def on_qtHelpTitleEdit_textChanged(self, _txt):
         """
         Private slot to check the title.
 
-        @param txt text of the line edit
+        @param _txt text of the line edit (unused)
         @type str
         """
         self.__checkQtHelpOptions()

eric ide

mercurial