--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgExportDialog.py Mon Apr 22 15:15:36 2024 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgExportDialog.py Mon Apr 22 18:23:20 2024 +0200 @@ -68,21 +68,21 @@ self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(enabled) @pyqtSlot(str) - def on_directoryPicker_textChanged(self, txt): + def on_directoryPicker_textChanged(self, _txt): """ Private slot to react on changes of the export directory edit. - @param txt contents of the line edit + @param _txt contents of the line edit (unused) @type str """ self.__updateOK() @pyqtSlot(str) - def on_patternEdit_textChanged(self, txt): + def on_patternEdit_textChanged(self, _txt): """ Private slot to react on changes of the export file name pattern edit. - @param txt contents of the line edit + @param _txt contents of the line edit (unused) @type str """ self.__updateOK()