src/eric7/QScintilla/Exporters/__init__.py

branch
eric7
changeset 9482
a2bc06a54d9d
parent 9221
bf71ee032bb4
child 9487
78cb053591c9
--- a/src/eric7/QScintilla/Exporters/__init__.py	Sun Nov 06 11:22:39 2022 +0100
+++ b/src/eric7/QScintilla/Exporters/__init__.py	Mon Nov 07 17:19:58 2022 +0100
@@ -40,23 +40,23 @@
     """
     try:
         if exporterFormat == "HTML":
-            from .ExporterHTML import ExporterHTML
+            from .ExporterHTML import ExporterHTML  # __IGNORE_WARNING_I101__
 
             return ExporterHTML(editor)
         elif exporterFormat == "PDF":
-            from .ExporterPDF import ExporterPDF
+            from .ExporterPDF import ExporterPDF  # __IGNORE_WARNING_I101__
 
             return ExporterPDF(editor)
         elif exporterFormat == "RTF":
-            from .ExporterRTF import ExporterRTF
+            from .ExporterRTF import ExporterRTF  # __IGNORE_WARNING_I101__
 
             return ExporterRTF(editor)
         elif exporterFormat == "TeX":
-            from .ExporterTEX import ExporterTEX
+            from .ExporterTEX import ExporterTEX  # __IGNORE_WARNING_I101__
 
             return ExporterTEX(editor)
         elif exporterFormat == "ODT":
-            from .ExporterODT import ExporterODT
+            from .ExporterODT import ExporterODT  # __IGNORE_WARNING_I101__
 
             return ExporterODT(editor)
     except ImportError:

eric ide

mercurial