src/eric7/QScintilla/Exporters/__init__.py

branch
eric7
changeset 10431
64157aeb0312
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- 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",

eric ide

mercurial