chore:tkinter

This commit is contained in:
guorong.zheng 2024-11-29 16:31:41 +08:00
parent 42f4b321ab
commit 61964d477a

View file

@ -19,19 +19,6 @@ from hotel import HotelUI
from subscribe import SubscribeUI
from online_search import OnlineSearchUI
import json
from pathlib import Path
from sys import base_prefix
from os import environ
import platform
if not ("TCL_LIBRARY" in environ and "TK_LIBRARY" in environ):
try:
tk.Tk()
except tk.TclError:
tk_dir = "tcl" if platform.system() == "Windows" else "lib"
tk_path = Path(base_prefix) / tk_dir
environ["TCL_LIBRARY"] = str(next(tk_path.glob("tcl8.*")))
environ["TK_LIBRARY"] = str(next(tk_path.glob("tk8.*")))
class TkinterUI: