zvt.utils.utils.fill_dict

zvt.utils.utils.fill_dict(src, dst)

Fills items from the source dictionary (src) into the destination dictionary (dst) if the keys are not already present in dst.

Args:

src (dict): The source dictionary to copy items from. dst (dict): The destination dictionary to copy items into.

Returns:

dict: The updated destination dictionary with new items from the source dictionary.