Browse Source

potato

pull/9873/head
Marcelo Trylesinski 2 years ago
parent
commit
7630332064
  1. 8
      fastapi/_compat.py

8
fastapi/_compat.py

@ -20,7 +20,9 @@ from typing import (
from fastapi.exceptions import RequestErrorModel from fastapi.exceptions import RequestErrorModel
from fastapi.types import IncEx, ModelNameMap, UnionType from fastapi.types import IncEx, ModelNameMap, UnionType
from pydantic import BaseModel, create_model from pydantic import BaseModel, create_model
from pydantic.json_schema import JsonSchemaValue
from pydantic.version import VERSION as PYDANTIC_VERSION from pydantic.version import VERSION as PYDANTIC_VERSION
from pydantic_core import core_schema
from starlette.datastructures import UploadFile from starlette.datastructures import UploadFile
from typing_extensions import Annotated, Literal, get_args, get_origin from typing_extensions import Annotated, Literal, get_args, get_origin
@ -86,6 +88,12 @@ if PYDANTIC_V2:
return super().generate_inner(schema["schema"]) return super().generate_inner(schema["schema"])
return super().nullable_schema(schema) return super().nullable_schema(schema)
def default_schema(self, schema: core_schema.WithDefaultSchema) -> JsonSchemaValue:
json_schema = super().default_schema(schema)
if self.skip_null_schema and json_schema.get("default", PydanticUndefined) is None:
json_schema.pop("default")
return json_schema
def generate_definitions( def generate_definitions(
self, self,
inputs: Sequence[ inputs: Sequence[

Loading…
Cancel
Save