--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -28,8 +28,10 @@ """ Constructor - @param projectPath project directory name (string) - @param parent reference to the parent widget (QWidget) + @param projectPath project directory name + @type str + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -63,7 +65,8 @@ """ Private slot to handle the update of the path. - @param p0 text of the path edit (string) + @param p0 text of the path edit + @type str """ self.__updateOk() @@ -72,7 +75,8 @@ """ Private slot to handle the update of the URL. - @param p0 text of the URL edit (string) + @param p0 text of the URL edit + @type str """ self.__updateOk() @@ -100,8 +104,8 @@ Public method to get the data. @return tuple containing the relative path within the project, the - sub-repository type and the sub-repository URL (string, string, - string) + sub-repository type and the sub-repository URL + @rtype tuple of (str, str, str) """ return ( self.pathPicker.text(),