From eee7a4e7c87ba3cac4df8056c551e380c6781ec7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Tue, 10 Dec 2019 16:37:37 -0500 Subject: organize imports --- hypervideo_gui.py | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) (limited to 'hypervideo_gui.py') 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" -- cgit v1.2.3