Mathieu Bressolle-Chataigner
3 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
8 additions and
1 deletions
-
fastapi/_compat.py
-
fastapi/utils.py
|
|
@ -56,6 +56,9 @@ if PYDANTIC_V2: |
|
|
|
) |
|
|
|
from pydantic._internal._typing_extra import eval_type_lenient |
|
|
|
from pydantic._internal._utils import lenient_issubclass as lenient_issubclass |
|
|
|
from pydantic.errors import ( |
|
|
|
PydanticUndefinedAnnotation as PydanticUndefinedAnnotation, |
|
|
|
) |
|
|
|
from pydantic.fields import FieldInfo |
|
|
|
from pydantic.json_schema import GenerateJsonSchema as GenerateJsonSchema |
|
|
|
from pydantic.json_schema import JsonSchemaValue as JsonSchemaValue |
|
|
@ -367,6 +370,9 @@ else: |
|
|
|
class PydanticSchemaGenerationError(Exception): # type: ignore[no-redef] |
|
|
|
pass |
|
|
|
|
|
|
|
class PydanticUndefinedAnnotation(Exception): # type: ignore[no-redef] |
|
|
|
pass |
|
|
|
|
|
|
|
def with_info_plain_validator_function( # type: ignore[misc] |
|
|
|
function: Callable[..., Any], |
|
|
|
*, |
|
|
|
|
|
@ -20,6 +20,7 @@ from fastapi._compat import ( |
|
|
|
BaseConfig, |
|
|
|
ModelField, |
|
|
|
PydanticSchemaGenerationError, |
|
|
|
PydanticUndefinedAnnotation, |
|
|
|
Undefined, |
|
|
|
UndefinedType, |
|
|
|
Validator, |
|
|
@ -94,7 +95,7 @@ def create_model_field( |
|
|
|
) |
|
|
|
try: |
|
|
|
return ModelField(**kwargs) # type: ignore[arg-type] |
|
|
|
except (RuntimeError, PydanticSchemaGenerationError): |
|
|
|
except (RuntimeError, PydanticSchemaGenerationError, PydanticUndefinedAnnotation): |
|
|
|
raise fastapi.exceptions.FastAPIError( |
|
|
|
"Invalid args for response field! Hint: " |
|
|
|
f"check that {type_} is a valid Pydantic field type. " |
|
|
|