27 Constructor |
27 Constructor |
28 |
28 |
29 @param plugin reference to the plugin object (TranslatorPlugin) |
29 @param plugin reference to the plugin object (TranslatorPlugin) |
30 @param parent reference to the parent object (QObject) |
30 @param parent reference to the parent object (QObject) |
31 """ |
31 """ |
32 super(MyMemoryEngine, self).__init__(plugin, parent) |
32 super().__init__(plugin, parent) |
33 |
33 |
34 QTimer.singleShot(0, self.availableTranslationsLoaded.emit) |
34 QTimer.singleShot(0, self.availableTranslationsLoaded.emit) |
35 |
35 |
36 def engineName(self): |
36 def engineName(self): |
37 """ |
37 """ |