--- a/src/eric7/Utilities/uic.py Thu Dec 21 15:46:22 2023 +0100 +++ b/src/eric7/Utilities/uic.py Thu Dec 21 19:50:01 2023 +0100 @@ -16,9 +16,12 @@ Local function to create the Python source file name for the compiled .ui file. - @param py_dir suggested name of the directory (string) - @param py_file suggested name for the compile source file (string) - @return tuple of directory name (string) and source file name (string) + @param py_dir suggested name of the directory + @type str + @param py_file suggested name for the compile source file + @type str + @return tuple of directory name (string) and source file name + @rtype str """ return py_dir, "Ui_{0}".format(py_file) @@ -28,7 +31,9 @@ Module function to compile the .ui files of a directory tree to Python sources. - @param directory name of a directory to scan for .ui files (string) - @param recurse flag indicating to recurse into subdirectories (boolean) + @param directory name of a directory to scan for .ui files + @type str + @param recurse flag indicating to recurse into subdirectories + @type boolean) """ compileUiDir(directory, recurse, __pyName)