From e0cebd6a7a59093d83dda20c54397c5f2446fde2 Mon Sep 17 00:00:00 2001 From: Richard Chien Date: Sat, 10 Nov 2018 10:16:59 +0800 Subject: [PATCH] Fix typing --- none/typing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/none/typing.py b/none/typing.py index 7882dad0..af13adc7 100644 --- a/none/typing.py +++ b/none/typing.py @@ -3,5 +3,5 @@ from typing import Union, List, Dict, Any, Sequence, Callable, Tuple 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] +CommandName_T = Tuple[str, ...] CommandArgs_T = Dict[str, Any]