merge_config¶
- mmtwfs.config.merge_config(*dicts)[source] [edit on github]¶
This takes a list of python dicts and merges them into a single dict. It is set up to assure that later arguments will take precedence over earlier ones by default.
- Parameters
- dicts: list
List of dicts to merge into a single dict
- Returns
- updated: dict
Arguments combined into a single dict. Later arguments take precedence over earlier arguments and dicts take precedence over non-dict values.