--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py Mon Apr 22 15:15:36 2024 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py Mon Apr 22 18:23:20 2024 +0200 @@ -61,21 +61,21 @@ self.__ok.setEnabled(path != "" and not os.path.isabs(path) and url != "") @pyqtSlot(str) - def on_pathPicker_textChanged(self, p0): + def on_pathPicker_textChanged(self, _txt): """ Private slot to handle the update of the path. - @param p0 text of the path edit + @param _txt text of the path edit (unused) @type str """ self.__updateOk() @pyqtSlot(str) - def on_urlEdit_textChanged(self, p0): + def on_urlEdit_textChanged(self, _txt): """ Private slot to handle the update of the URL. - @param p0 text of the URL edit + @param _txt text of the URL edit (unused) @type str """ self.__updateOk()