From 80b8b8c8813ccfceee1f1b78ee369518b952d221 Mon Sep 17 00:00:00 2001 From: JoeamAmier Date: Fri, 28 Jul 2023 14:26:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=203.5=20=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/main.py b/main.py index b3c89e54..e130696d 100644 --- a/main.py +++ b/main.py @@ -14,7 +14,7 @@ from src.main_web_UI import WebUI VERSION = 3.5 -STABLE = False +STABLE = True RELEASES = "https://github.com/JoeanAmier/TikTokDownloader/releases/latest" NAME = f"TikTokDownloader v{VERSION}{'' if STABLE else ' Beta'}" @@ -98,11 +98,6 @@ def server(): app.run(host="0.0.0.0", debug=False) -def close_file(files: list | tuple): - for f in files: - f.close() - - def change_config(file: Path, tip="修改设置成功!"): deal_config(file) print(tip)