src/eric7/CondaInterface/CondaExecDialog.py

branch
eric7
changeset 10065
de4ae767b0e3
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
diff -r 8c3207703dac -r de4ae767b0e3 src/eric7/CondaInterface/CondaExecDialog.py
--- 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

eric ide

mercurial