31 @param plugin reference to the plugin object |
31 @param plugin reference to the plugin object |
32 @type TranslatorPlugin |
32 @type TranslatorPlugin |
33 @param parent reference to the parent object |
33 @param parent reference to the parent object |
34 @type QObject |
34 @type QObject |
35 """ |
35 """ |
36 super(DeepLEngine, self).__init__(plugin, parent) |
36 super().__init__(plugin, parent) |
37 |
37 |
38 QTimer.singleShot(0, self.availableTranslationsLoaded.emit) |
38 QTimer.singleShot(0, self.availableTranslationsLoaded.emit) |
39 |
39 |
40 def engineName(self): |
40 def engineName(self): |
41 """ |
41 """ |