From 7dafee70f72fced6363e4f903cc31c8eec1f2be9 Mon Sep 17 00:00:00 2001 From: kdh8219 Date: Fri, 1 Nov 2024 09:43:34 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20false-positive=20about=20'=EC=95=8C?= =?UTF-8?q?=EC=95=98=EC=A7=80'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- korcen/korcen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/korcen/korcen.py b/korcen/korcen.py index 8ae2cc3..6bb9654 100644 --- a/korcen/korcen.py +++ b/korcen/korcen.py @@ -1483,7 +1483,7 @@ def general(text:str, id: int=None): text = re.sub("있지", "", text) text = re.sub("없지", "", text) text = re.sub("하지", "", text) - ext = re.sub('알았지', '', text) + text = re.sub('알았지', '', text) text = re.sub('몰랐지', '', text) text = re.sub('근데', '', text) text = re.sub('지근거', '', text)