From 85c302774cbb7cc4f41ca0a255f9ca241be5e906 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 21 Jul 2023 13:51:23 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20format?= =?UTF-8?q?=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fastapi/_compat.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/fastapi/_compat.py b/fastapi/_compat.py index a81394c00..a8c7cbde8 100644 --- a/fastapi/_compat.py +++ b/fastapi/_compat.py @@ -88,9 +88,14 @@ if PYDANTIC_V2: return super().generate_inner(schema["schema"]) return super().nullable_schema(schema) - def default_schema(self, schema: core_schema.WithDefaultSchema) -> JsonSchemaValue: + 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: + if ( + self.skip_null_schema + and json_schema.get("default", PydanticUndefined) is None + ): json_schema.pop("default") return json_schema