src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnRevisionSelectionDialog.py

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnRevisionSelectionDialog.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnRevisionSelectionDialog.py	Sat Dec 23 15:40:23 2023 +0100
@@ -23,7 +23,8 @@
         """
         Constructor
 
-        @param parent parent widget of the dialog (QWidget)
+        @param parent parent widget of the dialog
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -39,7 +40,9 @@
         Private method to generate the revision.
 
         @param no revision number to generate (1 or 2)
-        @return revision (integer or string)
+        @type int
+        @return revision
+        @rtype int or str
         """
         if no == 1:
             numberButton = self.number1Button
@@ -89,7 +92,8 @@
         """
         Public method to get the revisions.
 
-        @return list two integers or strings
+        @return list containing two revisions
+        @rtype list of [int or str, int or str]
         """
         rev1 = self.__getRevision(1)
         rev2 = self.__getRevision(2)

eric ide

mercurial