7 Module implementing a dialog to select code style message codes. |
7 Module implementing a dialog to select code style message codes. |
8 """ |
8 """ |
9 |
9 |
10 import textwrap |
10 import textwrap |
11 |
11 |
12 from PyQt5.QtCore import Qt |
12 from PyQt6.QtCore import Qt |
13 from PyQt5.QtWidgets import QDialog, QTreeWidgetItem |
13 from PyQt6.QtWidgets import QDialog, QTreeWidgetItem |
14 |
14 |
15 from .Ui_CodeStyleCodeSelectionDialog import Ui_CodeStyleCodeSelectionDialog |
15 from .Ui_CodeStyleCodeSelectionDialog import Ui_CodeStyleCodeSelectionDialog |
16 |
16 |
17 from .translations import getMessageCodes, getTranslatedMessage |
17 from .translations import getMessageCodes, getTranslatedMessage |
18 |
18 |