MibooGram/model/types.py

5 lines
124 B
Python
Raw Normal View History

2022-07-26 10:07:31 +00:00
from typing import Dict, Any, Callable, TypeVar
JSONDict = Dict[str, Any]
Func = TypeVar("Func", bound=Callable[..., Any])