aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_gui.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_gui.py')
-rw-r--r--hypervideo_gui.py23
1 files changed, 17 insertions, 6 deletions
diff --git a/hypervideo_gui.py b/hypervideo_gui.py
index 4f4ef42..5587ef3 100644
--- a/hypervideo_gui.py
+++ b/hypervideo_gui.py
@@ -1,17 +1,28 @@
import sys
import os
import re
+import threading
+import json
+
+import hypervideo
+
+from PyQt5.QtWidgets import (
+ QAction,
+ QApplication,
+ QComboBox,
+ QGridLayout,
+ QLabel,
+ QLineEdit,
+ QMainWindow,
+ QMessageBox,
+ QPushButton,
+ QWidget,
+)
-from PyQt5.QtWidgets import *
-from PyQt5.QtGui import QIcon
from PyQt5.QtCore import (
pyqtSlot,
)
-import threading
-import hypervideo
-import json
-
__version__ = "0.1"
__license__ = "GPL-3"