--- a/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnLoginDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnLoginDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -21,11 +21,15 @@ """ Constructor - @param realm name of the realm of the requested credentials (string) - @param username username as supplied by subversion (string) + @param realm name of the realm of the requested credentials + @type str + @param username username as supplied by subversion + @type str @param may_save flag indicating, that subversion is willing to save - the answers returned (boolean) - @param parent reference to the parent widget (QWidget) + the answers returned + @type bool + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -45,7 +49,8 @@ """ Public method to retrieve the login data. - @return tuple of three values (username, password, save) + @return tuple containing the username, the password and a flag to save the data + @rtype tuple of (str, str, bool) """ return ( self.usernameEdit.text(),