--- a/src/eric7/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/__init__.py Sun Nov 06 11:22:39 2022 +0100 +++ b/src/eric7/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/__init__.py Mon Nov 07 17:19:58 2022 +0100 @@ -73,31 +73,31 @@ @rtype TranslatorEngine """ if name == "deepl": - from .DeepLEngine import DeepLEngine + from .DeepLEngine import DeepLEngine # __IGNORE_WARNING_I101__ engine = DeepLEngine(plugin, parent) elif name == "googlev1": - from .GoogleV1Engine import GoogleV1Engine + from .GoogleV1Engine import GoogleV1Engine # __IGNORE_WARNING_I101__ engine = GoogleV1Engine(plugin, parent) elif name == "googlev2": - from .GoogleV2Engine import GoogleV2Engine + from .GoogleV2Engine import GoogleV2Engine # __IGNORE_WARNING_I101__ engine = GoogleV2Engine(plugin, parent) elif name == "ibm_watson": - from .IbmWatsonEngine import IbmWatsonEngine + from .IbmWatsonEngine import IbmWatsonEngine # __IGNORE_WARNING_I101__ engine = IbmWatsonEngine(plugin, parent) elif name == "microsoft": - from .MicrosoftEngine import MicrosoftEngine + from .MicrosoftEngine import MicrosoftEngine # __IGNORE_WARNING_I101__ engine = MicrosoftEngine(plugin, parent) elif name == "mymemory": - from .MyMemoryEngine import MyMemoryEngine + from .MyMemoryEngine import MyMemoryEngine # __IGNORE_WARNING_I101__ engine = MyMemoryEngine(plugin, parent) elif name == "yandex": - from .YandexEngine import YandexEngine + from .YandexEngine import YandexEngine # __IGNORE_WARNING_I101__ engine = YandexEngine(plugin, parent) else: