From d9a58ce54b30a0966ffbf6c4c80d21d69c41b94f Mon Sep 17 00:00:00 2001 From: Cassius0924 <2670226747@qq.com> Date: Sun, 4 Feb 2024 12:22:10 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=BE=AA=E7=8E=AF?= =?UTF-8?q?=E5=AF=BC=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wechatter/sender/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wechatter/sender/__init__.py b/wechatter/sender/__init__.py index 2cdd15c..28ded72 100644 --- a/wechatter/sender/__init__.py +++ b/wechatter/sender/__init__.py @@ -1,4 +1,6 @@ -from .notifier import notify_logged_in, notify_logged_out, notify_received +# isort: off from .sender import Sender +from .notifier import notify_logged_in, notify_logged_out, notify_received +# isort: on __all__ = ["Sender", "notify_received", "notify_logged_in", "notify_logged_out"]