src/eric7/QScintilla/MarkupProviders/HyperlinkMarkupDialog.py

branch
eric7
changeset 10692
9becf9ca115c
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
diff -r d1a603a70f83 -r 9becf9ca115c src/eric7/QScintilla/MarkupProviders/HyperlinkMarkupDialog.py
--- a/src/eric7/QScintilla/MarkupProviders/HyperlinkMarkupDialog.py	Tue Apr 23 09:29:13 2024 +0200
+++ b/src/eric7/QScintilla/MarkupProviders/HyperlinkMarkupDialog.py	Tue Apr 23 11:26:04 2024 +0200
@@ -56,21 +56,21 @@
         )
 
     @pyqtSlot(str)
-    def on_textEdit_textChanged(self, txt):
+    def on_textEdit_textChanged(self, _txt):
         """
         Private slot handling a change of the link text.
 
-        @param txt link text
+        @param _txt link text (unused)
         @type str
         """
         self.__updateOkButton()
 
     @pyqtSlot(str)
-    def on_targetEdit_textChanged(self, txt):
+    def on_targetEdit_textChanged(self, _txt):
         """
         Private slot handling a change of the link target.
 
-        @param txt link target
+        @param _txt link target (unused)
         @type str
         """
         self.__updateOkButton()

eric ide

mercurial