fix: minor fix in internal typing

This commit is contained in:
2025-12-08 19:04:08 -03:00
parent 02a28c9586
commit 19d1f72951

View File

@@ -66,7 +66,7 @@ class SchemaConverter:
:return: The generated Pydantic model.
"""
if ref_cache is None:
ref_cache: RefCacheDict = dict()
ref_cache = dict()
try:
validator = validator_for(schema)