diff --git a/.gitignore b/.gitignore index 2bc2de0..f00dad2 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ dist *.spec test_folder +.venv diff --git a/main.py b/main.py index c69d6f9..90e2b74 100644 --- a/main.py +++ b/main.py @@ -88,6 +88,7 @@ tokenSetting.place(height=24,width=264,x=96,y=124) tk.Button(settingsCanvas,text="Save",activebackground='#aaa',bg='#888',command=saveSettings).place(height=36,width=90,x=195,y=180) +# Rework? def updateVersionList() -> None : global CUR_VERSION global VERSION_MENU @@ -148,4 +149,4 @@ FRONTEND.configure(menu=Menubar) -FRONTEND.mainloop() \ No newline at end of file +FRONTEND.mainloop()