src/eric7/QScintilla/Exporters/__init__.py

branch
eric7
changeset 9221
bf71ee032bb4
parent 9209
b99e7fd55fd3
child 9482
a2bc06a54d9d
--- a/src/eric7/QScintilla/Exporters/__init__.py	Wed Jul 13 11:16:20 2022 +0200
+++ b/src/eric7/QScintilla/Exporters/__init__.py	Wed Jul 13 14:55:47 2022 +0200
@@ -13,26 +13,26 @@
 def getSupportedFormats():
     """
     Module function to get a dictionary of supported exporters.
-    
+
     @return dictionary of supported exporters. The keys are the
         internal format names. The items are the display strings
         for the exporters (string)
     """
     supportedFormats = {
-        "HTML": QCoreApplication.translate('Exporters', "HTML"),
-        "RTF": QCoreApplication.translate('Exporters', "RTF"),
-        "PDF": QCoreApplication.translate('Exporters', "PDF"),
-        "TeX": QCoreApplication.translate('Exporters', "TeX"),
-        "ODT": QCoreApplication.translate('Exporters', "ODT"),
+        "HTML": QCoreApplication.translate("Exporters", "HTML"),
+        "RTF": QCoreApplication.translate("Exporters", "RTF"),
+        "PDF": QCoreApplication.translate("Exporters", "PDF"),
+        "TeX": QCoreApplication.translate("Exporters", "TeX"),
+        "ODT": QCoreApplication.translate("Exporters", "ODT"),
     }
-    
+
     return supportedFormats
 
 
 def getExporter(exporterFormat, editor):
     """
     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)
     @return reference to the instanciated exporter object
@@ -41,18 +41,23 @@
     try:
         if exporterFormat == "HTML":
             from .ExporterHTML import ExporterHTML
+
             return ExporterHTML(editor)
         elif exporterFormat == "PDF":
             from .ExporterPDF import ExporterPDF
+
             return ExporterPDF(editor)
         elif exporterFormat == "RTF":
             from .ExporterRTF import ExporterRTF
+
             return ExporterRTF(editor)
         elif exporterFormat == "TeX":
             from .ExporterTEX import ExporterTEX
+
             return ExporterTEX(editor)
         elif exporterFormat == "ODT":
             from .ExporterODT import ExporterODT
+
             return ExporterODT(editor)
     except ImportError:
         return None

eric ide

mercurial