diff options
author | Jesús <heckyel@hyperbola.info> | 2019-12-10 16:37:37 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-12-10 16:37:37 -0500 |
commit | eee7a4e7c87ba3cac4df8056c551e380c6781ec7 (patch) | |
tree | c449b8f838146fa6bf687f19054bb15541d41e58 | |
parent | 822b127074496b7510bd8208a374c0f7ac52253f (diff) | |
download | hypervideo-gui-eee7a4e7c87ba3cac4df8056c551e380c6781ec7.tar.lz hypervideo-gui-eee7a4e7c87ba3cac4df8056c551e380c6781ec7.tar.xz hypervideo-gui-eee7a4e7c87ba3cac4df8056c551e380c6781ec7.zip |
organize imports
-rw-r--r-- | hypervideo_gui.py | 23 |
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" |