--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitApplyBundleDataDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitApplyBundleDataDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -22,9 +22,11 @@ Constructor @param bundleHeads list of heads contained in a bundle - (list of strings) - @param branches list of available branch names (list of strings) - @param parent reference to the parent widget (QWidget) + @type list of str + @param branches list of available branch names + @type list of str + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -36,7 +38,7 @@ """ Public method to get the entered data. - @return tuple with the bundle head (string) and the local branch - name (string) + @return tuple with the bundle head (string) and the local branch name + @rtype str """ return self.headCombo.currentText(), self.branchCombo.currentText()