From bf263c91d593cd0ba98e1dd680f33da7680ec903 Mon Sep 17 00:00:00 2001 From: misyaguziya Date: Thu, 14 Sep 2023 17:29:50 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B[bugfix]=20model=20=E5=89=8A?= =?UTF-8?q?=E9=99=A4=E3=81=99=E3=82=8B=E5=A4=89=E6=95=B0=E3=82=92=E9=96=93?= =?UTF-8?q?=E9=81=95=E3=81=88=E3=81=A6=E3=81=84=E3=81=9F=E5=95=8F=E9=A1=8C?= =?UTF-8?q?=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit del self.translator -> del self.keyword_processor --- model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model.py b/model.py index 46ac13ea..ceef0686 100644 --- a/model.py +++ b/model.py @@ -67,7 +67,7 @@ class Model: self.translator = Translator() def resetKeywordProcessor(self): - del self.translator + del self.keyword_processor self.keyword_processor = KeywordProcessor() def authenticationTranslator(self, fnc, choice_translator=None, auth_key=None):