src/eric7/Plugins/VcsPlugins/vcsGit/GitFetchDialog.py

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 10373
093dcebe5ecb
child 10439
21c28b0f9e41
diff -r 2f70ca07f0af -r 4cd7e5a8b3cf src/eric7/Plugins/VcsPlugins/vcsGit/GitFetchDialog.py
--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitFetchDialog.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitFetchDialog.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)
@@ -78,7 +81,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)
@@ -99,7 +103,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()
 
@@ -156,8 +161,7 @@
             remote branches, local branch, a flag indicating to fetch from
             all repositories, a flag indicating to remove obsolete tracking
             references and a flag indicating to fetch tags as well
-            (string, string, list of strings, string, boolean, boolean,
-             boolean)
+        @rtype tuple of (str, str, list of str, str, bool, bool, bool)
         """
         remote = ""
         url = ""

eric ide

mercurial