add type hint for functional

This commit is contained in:
Prodesire 2018-03-06 08:39:22 +08:00
parent e8b1ff70fb
commit 5674d4cb33
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
from typing import List, Callable, Any
def compose(*funcs: List[Callable]):
return Any