--- a/src/eric7/CondaInterface/CondaExecDialog.py Wed May 24 17:28:58 2023 +0200 +++ b/src/eric7/CondaInterface/CondaExecDialog.py Wed May 24 19:54:24 2023 +0200 @@ -104,7 +104,8 @@ else: self.__logOutput(self.tr("Operation started.\n")) - def __finish(self, exitCode, exitStatus, giveUp=False): + @pyqtSlot(int, QProcess.ExitStatus) + def __finish(self, exitCode, exitStatus): """ Private slot called when the process finished. @@ -115,8 +116,6 @@ @type int @param exitStatus exit status of the process @type QProcess.ExitStatus - @param giveUp flag indicating to not start another attempt - @type bool """ if ( self.__process is not None