From d88eda7c664fd6ca060dc9ba6315f3ebc4752e28 Mon Sep 17 00:00:00 2001 From: Richard Chien Date: Fri, 25 Jan 2019 18:30:44 +0800 Subject: [PATCH] Revert "Add deprecate comment" This reverts commit 366d7d9b --- nonebot/typing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nonebot/typing.py b/nonebot/typing.py index 6e13a19d..df890f14 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] # deprecated, use `State_T` instead +CommandArgs_T = Dict[str, Any] State_T = Dict[str, Any]