From fdeccc07c5aafb3007e701b76799a78b6272c41f Mon Sep 17 00:00:00 2001 From: Windpicker-owo <3431391539@qq.com> Date: Sat, 8 Nov 2025 18:40:26 +0800 Subject: [PATCH] =?UTF-8?q?feat(event-manager):=20=E5=BC=95=E5=85=A5asynci?= =?UTF-8?q?o=E5=BA=93=E4=BB=A5=E6=94=AF=E6=8C=81=E5=BC=82=E6=AD=A5?= =?UTF-8?q?=E4=BA=8B=E4=BB=B6=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/plugin_system/core/event_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin_system/core/event_manager.py b/src/plugin_system/core/event_manager.py index 1b1765ab9..ed773e31b 100644 --- a/src/plugin_system/core/event_manager.py +++ b/src/plugin_system/core/event_manager.py @@ -2,7 +2,7 @@ 事件管理器 - 实现Event和EventHandler的单例管理 提供统一的事件注册、管理和触发接口 """ - +import asyncio from threading import Lock from typing import Any, Optional