python_utils.merge_dicts_safely =============================== Back to :doc:`Module page <../modules/python_utils>` Summary ------- merge multiple dictionaries into one, accepting repeated keys if values are consistent, otherwise raise ValueError Signature --------- .. code-block:: python def merge_dicts_safely(dics) .. list-table:: Input variables :header-rows: 1 * - Name - Type - Default - Description * - ``dics`` - - - - - - Output variables ---------------- .. list-table:: :header-rows: 1 * - Return annotation - Docstring type - Description * - ``None`` - - - - Docstring --------- .. code-block:: text merge multiple dictionaries into one, accepting repeated keys if values are consistent, otherwise raise ValueError