Sebastián Ramírez
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
1 deletions
-
fastapi/types.py
|
|
@ -6,6 +6,5 @@ from pydantic import BaseModel |
|
|
|
|
|
|
|
DecoratedCallable = TypeVar("DecoratedCallable", bound=Callable[..., Any]) |
|
|
|
UnionType = getattr(types, "UnionType", Union) |
|
|
|
NoneType = getattr(types, "UnionType", None) |
|
|
|
ModelNameMap = Dict[Union[Type[BaseModel], Type[Enum]], str] |
|
|
|
IncEx = Union[Set[int], Set[str], Dict[int, Any], Dict[str, Any]] |
|
|
|