--- a/src/eric7/QScintilla/Exporters/__init__.py Wed Dec 20 19:28:22 2023 +0100 +++ b/src/eric7/QScintilla/Exporters/__init__.py Thu Dec 21 12:03:40 2023 +0100 @@ -19,7 +19,8 @@ @return dictionary of supported exporters. The keys are the internal format names. The items are the display strings - for the exporters (string) + for the exporters. + @rtype dict """ supportedFormats = { "HTML": QCoreApplication.translate("Exporters", "HTML"), @@ -36,10 +37,12 @@ """ Module function to instantiate an exporter object for a given format. - @param exporterFormat format of the exporter (string) - @param editor reference to the editor object (QScintilla.Editor.Editor) + @param exporterFormat format of the exporter + @type str + @param editor reference to the editor object + @type QScintilla.Editor.Editor @return reference to the instanciated exporter object - (QScintilla.Exporter.Exporter) + @rtype QScintilla.Exporter.Exporter """ exporterMapping = { "HTML": ".ExporterHTML",