7 Module implementing the Eric assistant plugin. |
7 Module implementing the Eric assistant plugin. |
8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 |
11 |
12 from PyQt6.QtCore import QObject, QTranslator, QCoreApplication |
12 from PyQt6.QtCore import QCoreApplication, QObject, QTranslator |
13 |
13 |
|
14 from AssistantEric.Assistant import AcsAPIs, AcsProject |
|
15 from eric7 import Preferences |
14 from eric7.EricWidgets.EricApplication import ericApp |
16 from eric7.EricWidgets.EricApplication import ericApp |
15 |
|
16 from eric7 import Preferences |
|
17 |
|
18 from AssistantEric.Assistant import AcsAPIs, AcsProject |
|
19 |
17 |
20 # Start-Of-Header |
18 # Start-Of-Header |
21 name = "Assistant Eric Plugin" |
19 name = "Assistant Eric Plugin" |
22 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
20 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
23 autoactivate = True |
21 autoactivate = True |