diff -r 2f70ca07f0af -r 4cd7e5a8b3cf src/eric7/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/LfConvertDataDialog.py --- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/LfConvertDataDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/LfConvertDataDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -28,9 +28,12 @@ """ Constructor - @param currentPath directory name of the current project (string) - @param mode dialog mode (string, one of 'largefiles' or 'normal') - @param parent reference to the parent widget (QWidget) + @param currentPath directory name of the current project + @type str + @param mode dialog mode (one of 'largefiles' or 'normal') + @type str + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -58,7 +61,8 @@ """ Private slot to handle editing of the new project directory. - @param txt new project directory name (string) + @param txt new project directory name + @type str """ self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled( txt @@ -70,8 +74,9 @@ """ Public method to retrieve the entered data. - @return tuple containing the new project directory name (string), - minimum file size (integer) and file patterns (list of string) + @return tuple containing the new project directory name, minimum file size + and file patterns + @rtype tuple of (str, int, list of str) """ patterns = self.lfFilePatternsEdit.text().split() if set(patterns) == set(self.__defaults["pattern"]):