Revert "Add deprecate comment"

This reverts commit 366d7d9b
This commit is contained in:
Richard Chien 2019-01-25 18:30:44 +08:00
parent 366d7d9bfd
commit d88eda7c66

View File

@ -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]