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
4 additions and
4 deletions
-
fastapi/utils.py
|
|
@ -147,15 +147,15 @@ def generate_unique_id(route: "APIRoute") -> str: |
|
|
|
|
|
|
|
|
|
|
|
def deep_dict_update(main_dict: Dict[Any, Any], update_dict: Dict[Any, Any]) -> None: |
|
|
|
for key in update_dict: |
|
|
|
for key, value in update_dict.items(): |
|
|
|
if ( |
|
|
|
key in main_dict |
|
|
|
and isinstance(main_dict[key], dict) |
|
|
|
and isinstance(update_dict[key], dict) |
|
|
|
and isinstance(value, dict) |
|
|
|
): |
|
|
|
deep_dict_update(main_dict[key], update_dict[key]) |
|
|
|
deep_dict_update(main_dict[key], value) |
|
|
|
else: |
|
|
|
main_dict[key] = update_dict[key] |
|
|
|
main_dict[key] = value |
|
|
|
|
|
|
|
|
|
|
|
def get_value_or_default( |
|
|
|