diff options
author | Jesús <heckyel@hyperbola.info> | 2020-02-29 20:48:37 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-02-29 20:48:37 -0500 |
commit | 597453c1af6de70ad949efde6da5f97d38f7b8ba (patch) | |
tree | 348483c49d7e8cf1b4f5429a644901ee6f42f147 /script.py | |
parent | a8bfbe37c474155cedbf16a861675c2e3579f7cc (diff) | |
download | hypervideo-gui-597453c1af6de70ad949efde6da5f97d38f7b8ba.tar.lz hypervideo-gui-597453c1af6de70ad949efde6da5f97d38f7b8ba.tar.xz hypervideo-gui-597453c1af6de70ad949efde6da5f97d38f7b8ba.zip |
[pep8] fix unused name packages
Diffstat (limited to 'script.py')
-rw-r--r-- | script.py | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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__': |