diff -r 2f70ca07f0af -r 4cd7e5a8b3cf src/eric7/Plugins/VcsPlugins/vcsMercurial/HgBookmarkRenameDialog.py --- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgBookmarkRenameDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgBookmarkRenameDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -22,8 +22,10 @@ """ Constructor - @param bookmarksList list of bookmarks (list of strings) - @param parent reference to the parent widget (QWidget) + @param bookmarksList list of bookmarks + @type list of str + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -48,7 +50,8 @@ """ Private slot to handle changes of the bookmark name. - @param txt text of the edit (string) + @param txt text of the edit + @type str """ self.__updateUI() @@ -57,7 +60,8 @@ """ Private slot to handle changes of the selected bookmark. - @param txt name of the selected bookmark (string) + @param txt name of the selected bookmark + @type str """ self.__updateUI() @@ -66,7 +70,7 @@ Public method to retrieve the entered data. @return tuple naming the old and new bookmark names - (string, string) + @rtype tuple of (str, str) """ return ( self.bookmarkCombo.currentText().replace(" ", "_"),