5 |
5 |
6 """ |
6 """ |
7 Module implementing a dialog to run a flask command and show its output. |
7 Module implementing a dialog to run a flask command and show its output. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSlot, Qt, QProcess, QTimer |
10 from PyQt6.QtCore import QProcess, Qt, QTimer, pyqtSlot |
11 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QAbstractButton |
11 from PyQt6.QtWidgets import QAbstractButton, QDialog, QDialogButtonBox |
12 |
12 |
13 from eric7.EricWidgets import EricMessageBox |
13 from eric7.EricWidgets import EricMessageBox |
14 |
14 |
15 from .Ui_FlaskCommandDialog import Ui_FlaskCommandDialog |
15 from .Ui_FlaskCommandDialog import Ui_FlaskCommandDialog |
16 |
16 |