diff -r 2f70ca07f0af -r 4cd7e5a8b3cf src/eric7/Plugins/VcsPlugins/vcsGit/GitPullDialog.py --- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitPullDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitPullDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -23,8 +23,11 @@ Constructor @param vcs reference to the git object - @param repodir directory name of the local repository (string) - @param parent reference to the parent widget (QWidget) + @type Git + @param repodir directory name of the local repository + @type str + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -74,7 +77,8 @@ """ Private slot to handle changes of the selected repository. - @param txt current text of the combo box (string) + @param txt current text of the combo box + @type str """ self.remoteEdit.setReadOnly(txt != self.__custom) self.remoteBranchesList.setEnabled(txt != self.__all) @@ -95,7 +99,8 @@ """ Private slot to handle changes of the URL edit. - @param txt current text of the URL edit (string) + @param txt current text of the URL edit + @type str """ self.__updateButtonEnable() @@ -135,7 +140,7 @@ @return tuple of remote name, remote url (for custom remotes), remote branches, a flag indicating to pull from all repositories and a flag indicating to remove obsolete tracking references - (string, string, list of strings, boolean, boolean) + @rtype tuple of (str, str, list of str, bool, bool) """ remote = "" url = ""