Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagepy
def merge_dicts(*dict_args):
   """Merge arg_paramsseveral anddictionaries aux_params to populate shared_bufferinto one"""
   result = {}
   for dictionary in dict_args:
       result.update(dictionary)
   return result

...