Merge branch 'main' into feature/db-cache

This commit is contained in:
HibiKier 2025-07-12 17:40:50 +08:00 committed by GitHub
commit 419c8934a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ def _handle_config(plugin: Plugin, exists_module: list[str]):
reg_config.value,
help=reg_config.help,
default_value=reg_config.default_value,
type=reg_config.type,
type=reg_config.type, # type: ignore
arg_parser=reg_config.arg_parser,
_override=False,
)

View File

@ -65,7 +65,7 @@ class RegisterConfig(BaseModel):
"""配置注解"""
default_value: Any | None = None
"""默认值"""
type: Any = None
type: object = str
"""参数类型"""
arg_parser: Callable | None = None
"""参数解析"""