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

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py	Sat Dec 23 15:40:23 2023 +0100
@@ -26,10 +26,13 @@
         """
         Constructor
 
-        @param rootDir root of the directory tree (string)
+        @param rootDir root of the directory tree
+        @type str
         @param patchCheckData tuple of data as returned by the
             getData() method
-        @param parent reference to the parent widget (QWidget)
+        @type tuple of (list of str, int, bool, bool)
+        @param parent reference to the parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -128,7 +131,8 @@
         """
         Private method to get the list of patch files.
 
-        @return list of patch files (list of string)
+        @return list of patch files
+        @rtype list of str
         """
         patchFiles = []
         for row in range(self.patchFilesList.count()):
@@ -144,7 +148,7 @@
         @return tuple of list of patch files, strip count, flag indicating
             that the patch has inaccurate end-of-file marker and a flag
             indicating to not trust the line count information
-            (list of string, integer, boolean, boolean)
+        @rtype tuple of (list of str, int, bool, bool)
         """
         return (
             self.__getPatchFilesList(),

eric ide

mercurial