From 455d30388b289be3268c6b26463c0986c9f06cd2 Mon Sep 17 00:00:00 2001 From: Shawn-Shan Date: Wed, 22 Jul 2020 12:31:01 -0500 Subject: [PATCH] update app --- app/app.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/app/app.py b/app/app.py index 49796f9..31811fc 100644 --- a/app/app.py +++ b/app/app.py @@ -1,11 +1,10 @@ import threading +from tkinter import Tk, BOTH, StringVar +from tkinter.filedialog import askopenfilenames +from tkinter.ttk import Frame, Label, Button import fawkes.protection -from tkinter import Tk, BOTH, StringVar -from tkinter.ttk import Frame, Label, Style, Button -from tkinter.filedialog import askdirectory, askopenfilenames - class UI(Frame): def __init__(self): @@ -60,4 +59,4 @@ def thread_it(func, *args): if __name__ == '__main__': - main() \ No newline at end of file + main()