add concrete type

This commit is contained in:
JONEMI19 2024-02-29 08:43:58 +00:00
parent e8b75a08ff
commit 427badf67b
1 changed files with 3 additions and 1 deletions

View File

@ -8,4 +8,6 @@ DecoratedCallable = TypeVar("DecoratedCallable", bound=Callable[..., Any])
UnionType = getattr(types, "UnionType", Union)
ModelNameMap = Dict[Union[Type[BaseModel], Type[Enum]], str]
IncEx = Union[Set[int], Set[str], Dict[int, Any], Dict[str, Any]]
FFQuery = Dict[str, Union[str, IncEx]]
class FFQuery(Dict[str, Union[str, IncEx]]):
pass