--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgCommandDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgCommandDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -28,9 +28,12 @@ """ Constructor - @param argvList history list of commandline arguments (list of strings) - @param ppath pathname of the project directory (string) - @param parent parent widget of this dialog (QWidget) + @param argvList history list of commandline arguments + @type list of str + @param ppath pathname of the project directory + @type str + @param parent parent widget of this dialog + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -62,6 +65,7 @@ Private method used to enable/disable the OK-button. @param text ignored + @type str """ self.okButton.setDisabled(self.commandCombo.currentText() == "") @@ -69,6 +73,7 @@ """ Public method to retrieve the data entered into this dialog. - @return commandline parameters (string) + @return commandline parameters + @rtype str """ return self.commandCombo.currentText()