diff --git a/nonebot/typing.py b/nonebot/typing.py index df890f14..6e13a19d 100644 --- a/nonebot/typing.py +++ b/nonebot/typing.py @@ -4,5 +4,5 @@ Context_T = Dict[str, Any] Message_T = Union[str, Dict[str, Any], List[Dict[str, Any]]] Expression_T = Union[str, Sequence[str], Callable] CommandName_T = Tuple[str, ...] -CommandArgs_T = Dict[str, Any] +CommandArgs_T = Dict[str, Any] # deprecated, use `State_T` instead State_T = Dict[str, Any]