diff options
-rw-r--r-- | hypervideo_gui/main_ui.py | 6 | ||||
-rw-r--r-- | script.py | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/hypervideo_gui/main_ui.py b/hypervideo_gui/main_ui.py index e9a2522..9e85ba1 100644 --- a/hypervideo_gui/main_ui.py +++ b/hypervideo_gui/main_ui.py @@ -6,19 +6,14 @@ import sys from PyQt5.QtCore import ( QFile, - QPoint, - QRect, - QSize, QStandardPaths, Qt, QProcess, QSettings ) -from PyQt5.QtGui import QIcon, QFont from PyQt5.QtWidgets import ( QAction, - QApplication, QComboBox, QFileDialog, QHBoxLayout, @@ -27,7 +22,6 @@ from PyQt5.QtWidgets import ( QMainWindow, QMessageBox, QProgressBar, - QPushButton, QToolButton, QVBoxLayout, QWidget, @@ -2,7 +2,13 @@ import sys -from hypervideo_gui.main_ui import * +from hypervideo_gui.main_ui import ( + MainWindow +) + +from PyQt5.QtWidgets import ( + QApplication +) # Exec APP if __name__ == '__main__': |