8 """ |
8 """ |
9 |
9 |
10 import contextlib |
10 import contextlib |
11 import os |
11 import os |
12 |
12 |
13 from PyQt6.QtCore import pyqtSlot, QObject, QTranslator, QCoreApplication |
13 from PyQt6.QtCore import QCoreApplication, QObject, QTranslator, pyqtSlot |
14 from PyQt6.QtGui import QAction |
14 from PyQt6.QtGui import QAction |
15 from PyQt6.QtWidgets import QMenu |
15 from PyQt6.QtWidgets import QMenu |
16 |
16 |
17 from eric7 import Preferences |
17 from eric7 import Preferences |
18 |
|
19 from eric7.EricWidgets.EricApplication import ericApp |
18 from eric7.EricWidgets.EricApplication import ericApp |
20 |
19 |
21 # Start-Of-Header |
20 # Start-Of-Header |
22 name = "Print Remover Plug-in" |
21 name = "Print Remover Plug-in" |
23 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
22 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |