From 54f6916172cb40c769af8329dc01ee74014daa0a Mon Sep 17 00:00:00 2001 From: LIghtJUNction Date: Mon, 30 Mar 2026 18:03:02 +0800 Subject: [PATCH] fix: type --- astrbot/core/astrbot_config_mgr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astrbot/core/astrbot_config_mgr.py b/astrbot/core/astrbot_config_mgr.py index 24aed5908..80f707df2 100644 --- a/astrbot/core/astrbot_config_mgr.py +++ b/astrbot/core/astrbot_config_mgr.py @@ -114,7 +114,7 @@ class AstrBotConfigManager: scope_id="global", ) random_word = abconf_name or uuid.uuid4().hex[:8] - abconf_data[abconf_id] = { + abconf_data[abconf_id] = { # type: ignore[index] "path": abconf_path, "name": random_word, }