From 6de8c564fee547876a0c7c8a8ec8e38bc42ab783 Mon Sep 17 00:00:00 2001 From: zstar <65890619+zstar1003@users.noreply.github.com> Date: Tue, 1 Apr 2025 00:40:37 +0800 Subject: [PATCH] =?UTF-8?q?refactor(plugins):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=8C=96=E6=B5=8B=E8=AF=95=E6=8A=A5=E9=94=99?= =?UTF-8?q?=E9=81=97=E7=95=99=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- intergrations/chatgpt-on-wechat/plugins/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/intergrations/chatgpt-on-wechat/plugins/__init__.py b/intergrations/chatgpt-on-wechat/plugins/__init__.py index 28032b8..f6ded86 100644 --- a/intergrations/chatgpt-on-wechat/plugins/__init__.py +++ b/intergrations/chatgpt-on-wechat/plugins/__init__.py @@ -1,8 +1,8 @@ from beartype.claw import beartype_this_package -beartype_this_package() - from .ragflow_chat import RAGFlowChat +beartype_this_package() + __all__ = [ "RAGFlowChat" ]