diff -r 2f70ca07f0af -r 4cd7e5a8b3cf src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnRevisionSelectionDialog.py --- 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)