--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py Mon Apr 22 15:15:36 2024 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py Mon Apr 22 18:23:20 2024 +0200 @@ -198,23 +198,23 @@ ui = ericApp().getObject("UserInterface") ui.launchHelpViewer("http://localhost:{0}".format(self.__portSpin.value())) - def closeEvent(self, e): + def closeEvent(self, _evt): """ Protected slot implementing a close event handler. - @param e close event + @param _evt reference to the close event object (unused) @type QCloseEvent """ self.__stopServer() @pyqtSlot(int, QProcess.ExitStatus) - def __procFinished(self, exitCode, exitStatus): + def __procFinished(self, _exitCode, _exitStatus): """ Private slot connected to the finished signal. - @param exitCode exit code of the process + @param _exitCode exit code of the process (unused) @type int - @param exitStatus exit status of the process + @param _exitStatus exit status of the process (unused) @type QProcess.ExitStatus """ self.__stopServer()