Browse Source

♻ Change a `dict()` for `{}` in `fastapi/utils.py` (#3138)

pull/5075/merge
Shahriyar Rzayev 3 years ago
committed by GitHub
parent
commit
00bdf533ef
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      fastapi/utils.py

2
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__

Loading…
Cancel
Save