src/eric7/VirtualEnv/VirtualenvUpgradeExecDialog.py

branch
eric7
changeset 10433
328f3ec4b77a
parent 10069
435cc5875135
child 10439
21c28b0f9e41
--- a/src/eric7/VirtualEnv/VirtualenvUpgradeExecDialog.py	Thu Dec 21 15:46:22 2023 +0100
+++ b/src/eric7/VirtualEnv/VirtualenvUpgradeExecDialog.py	Thu Dec 21 19:50:01 2023 +0100
@@ -70,7 +70,7 @@
         Public slot to start the virtualenv command.
 
         @param arguments commandline arguments for virtualenv/pyvenv program
-            (list of strings)
+        @type list of str
         """
         if self.__callIndex == 0:
             # first attempt, add a given python interpreter and do
@@ -100,7 +100,8 @@
         """
         Private slot called by a button of the button box clicked.
 
-        @param button button that was clicked (QAbstractButton)
+        @param button button that was clicked
+        @type QAbstractButton
         """
         if button == self.buttonBox.button(QDialogButtonBox.StandardButton.Close):
             self.accept()
@@ -115,9 +116,12 @@
         It is called when the process finished or
         the user pressed the button.
 
-        @param exitCode exit code of the process (integer)
-        @param exitStatus exit status of the process (QProcess.ExitStatus)
-        @param giveUp flag indicating to not start another attempt (boolean)
+        @param exitCode exit code of the process
+        @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
@@ -199,7 +203,8 @@
         """
         Private method to log some output.
 
-        @param s output string to log (string)
+        @param s output string to log
+        @type str
         """
         self.contents.insertPlainText(s)
         self.contents.ensureCursorVisible()
@@ -208,7 +213,8 @@
         """
         Private method to log an error.
 
-        @param s error string to log (string)
+        @param s error string to log
+        @type str
         """
         self.errorGroup.show()
         self.errors.insertPlainText(s)

eric ide

mercurial