12 |
12 |
13 from PyQt6.QtCore import pyqtSlot, QObject, QTranslator, QCoreApplication |
13 from PyQt6.QtCore import pyqtSlot, QObject, QTranslator, QCoreApplication |
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 EricWidgets.EricApplication import ericApp |
17 from eric7 import Preferences |
18 |
18 |
19 import Preferences |
19 from eric7.EricWidgets.EricApplication import ericApp |
20 |
20 |
21 # Start-Of-Header |
21 # Start-Of-Header |
22 name = "Print Remover Plug-in" |
22 name = "Print Remover Plug-in" |
23 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
23 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
24 autoactivate = True |
24 autoactivate = True |
25 deactivateable = True |
25 deactivateable = True |
26 version = "10.0.0" |
26 version = "10.1.0" |
27 className = "PrintRemoverPlugin" |
27 className = "PrintRemoverPlugin" |
28 packageName = "PrintRemover" |
28 packageName = "PrintRemover" |
29 shortDescription = "Remove print() like debug statements." |
29 shortDescription = "Remove print() like debug statements." |
30 longDescription = ( |
30 longDescription = ( |
31 """This plug-in implements a tool to remove lines starting with""" |
31 """This plug-in implements a tool to remove lines starting with""" |