Remove unneeded duplicate check for pydantic v1 since we are already checking that in the else block. (#2467)

* Remove unneeded duplicate check for pydantic v1 since we are already in
the else block.

* fix formatting
This commit is contained in:
Arun 2024-04-30 10:26:36 -07:00 committed by GitHub
parent 5b6ae324e2
commit ba9ff45adb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 19 additions and 19 deletions

View File

@ -64,7 +64,7 @@ else: # pragma: no cover
Returns:
JsonSchemaValue: The JSON schema
"""
if PYDANTIC_V1:
if t is None:
return {"type": "null"}
elif get_origin(t) is Union:
@ -77,7 +77,7 @@ else: # pragma: no cover
"prefixItems": prefixItems,
"type": "array",
}
else:
d = schema_of(t)
if "title" in d:
d.pop("title")