From 2056f3b89e371d07412306f07033f8f2c233c5e6 Mon Sep 17 00:00:00 2001 From: Ate329 Date: Sun, 10 Dec 2023 22:28:02 +0200 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E4=BA=86=E4=B8=80=E4=BA=9B?= =?UTF-8?q?=E6=97=A0=E6=84=8F=E4=B9=89=E7=9A=84=E4=BB=A3=E7=A0=81=E4=B8=8E?= =?UTF-8?q?=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/analysis/analysis.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/analysis/analysis.py b/app/analysis/analysis.py index 6d2a5d9..f57f8f8 100644 --- a/app/analysis/analysis.py +++ b/app/analysis/analysis.py @@ -25,8 +25,6 @@ class StopwordsWindow(tk.Tk): def __init__(self): super().__init__() self.title("屏蔽词管理") - - # Set the size of the window self.geometry("250x170") # File paths @@ -57,7 +55,6 @@ class StopwordsWindow(tk.Tk): def add_stopwords(self): original_stopwords_file = os.path.abspath('./app/data/stopwords.txt') - default_stopwords_file = os.path.abspath('./app/data/default_stopwords.txt') user_input = self.user_input.get() word_list = user_input.split()