--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitUserConfigDataDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitUserConfigDataDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -21,8 +21,10 @@ """ Constructor - @param version Git version info (tuple of two integers) - @param parent reference to the parent widget (QWidget) + @param version Git version info + @type tuple of (int, int) + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -35,7 +37,7 @@ Public method to retrieve the entered data. @return tuple with user's first name, last name and email address - (tuple of three strings) + @rtype tuple of (str, str, str) """ return ( self.firstNameEdit.text(),