364:a92b3272f4c1 | 365:f740b50380df |
---|---|
6 """ | 6 """ |
7 Module implementing a dialog to show an error message and optionally a | 7 Module implementing a dialog to show an error message and optionally a |
8 traceback. | 8 traceback. |
9 """ | 9 """ |
10 | 10 |
11 from PyQt5.QtWidgets import QDialog | 11 from PyQt6.QtWidgets import QDialog |
12 | 12 |
13 from .Ui_ErrorDialog import Ui_ErrorDialog | 13 from .Ui_ErrorDialog import Ui_ErrorDialog |
14 | 14 |
15 | 15 |
16 class ErrorDialog(QDialog, Ui_ErrorDialog): | 16 class ErrorDialog(QDialog, Ui_ErrorDialog): |