dict_utils
Functions
|
Recursively update a dictionary with keys and values from another dictionary. |
Module Contents
- dict_utils.recursive_dict_update(original_dict, update_dict)
Recursively update a dictionary with keys and values from another dictionary.
- Parameters:
original_dict (dict) – The original dictionary to be updated (in place).
update_dict (dict) – The dictionary containing keys to be updated in the original dictionary.