Shahriyar Rzayev
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
fastapi/utils.py
|
|
@ -87,7 +87,7 @@ def create_cloned_field( |
|
|
|
) -> ModelField: |
|
|
|
# _cloned_types has already cloned types, to support recursive models |
|
|
|
if cloned_types is None: |
|
|
|
cloned_types = dict() |
|
|
|
cloned_types = {} |
|
|
|
original_type = field.type_ |
|
|
|
if is_dataclass(original_type) and hasattr(original_type, "__pydantic_model__"): |
|
|
|
original_type = original_type.__pydantic_model__ |
|
|
|