You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
344 B
11 lines
344 B
from app.ui.update.updateUi import Ui_Dialog
|
|
import shutil
|
|
from PyQt5.QtCore import QThread, pyqtSignal
|
|
from PyQt5.QtGui import QPixmap
|
|
from PyQt5.QtWidgets import QWidget, QMessageBox, QAction, QLineEdit
|
|
|
|
|
|
class UpdateControl(QWidget, Ui_Dialog):
|
|
def __init__(self, parent=None):
|
|
super().__init__(parent)
|
|
self.setupUi(self) |