--- a/src/eric7/EricXML/ProjectReader.py Tue Dec 19 11:04:03 2023 +0100 +++ b/src/eric7/EricXML/ProjectReader.py Tue Dec 19 19:57:08 2023 +0100 @@ -24,9 +24,11 @@ """ Constructor - @param device reference to the I/O device to read from (QIODevice) + @param device reference to the I/O device to read from + @type QIODevice @param project Reference to the project object to store the - information into. + information into. + @type Project """ XMLStreamReaderBase.__init__(self, device) @@ -189,9 +191,12 @@ """ Private method to read a list of files. - @param tag name of the list tag (string) - @param listTag name of the list element tag (string) - @param dataKey key of the project data element (string) + @param tag name of the list tag + @type str + @param listTag name of the list element tag + @type str + @param dataKey key of the project data element + @type str """ while not self.atEnd(): self.readNext() @@ -214,9 +219,12 @@ """ Private method to read a list of files. - @param tag name of the list tag (string) - @param dataTag name of the data tag (string) - @param dataKey key of the project data element (string) + @param tag name of the list tag + @type str + @param dataTag name of the data tag + @type str + @param dataKey key of the project data element + @type str """ while not self.atEnd(): self.readNext()