From 59ba7696857e9e10d159e916f16144b63cbe3c32 Mon Sep 17 00:00:00 2001 From: YourSandwich Date: Sat, 1 May 2021 22:41:48 +0200 Subject: [PATCH] Clean import modules --- main.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/main.py b/main.py index 963ef11..c63354b 100644 --- a/main.py +++ b/main.py @@ -1,6 +1,5 @@ -from PySide2.QtWidgets import * -from PySide2.QtGui import * -from PySide2.QtCore import * +from PySide2.QtWidgets import QWidget, QPushButton, QListWidget, QApplication, QListWidgetItem, QMessageBox, QTextBrowser, QVBoxLayout +from PySide2.QtGui import QGuiApplication, QIcon, QFont from getKernelInfo import KernelVerList, KernelURL import sys,os @@ -8,7 +7,6 @@ import sys,os # TODO: Implement when ListItem selected and install pressed, to parse the array and download the right Kernel with wget or curl from the Archive # TODO: Implement resizable Windows # TODO: Clean the code. -# TODO: Import from PySide only the needed functions ## Creating the MainWindow class Window(QWidget):