From c36f7bd0ed3df9971d2079d59d6b5c4e3e6d7d10 Mon Sep 17 00:00:00 2001 From: Clinton Bradford Date: Thu, 19 Oct 2023 08:03:06 -0700 Subject: [PATCH] Add a bit of docstring --- src/folio_migration_tools/config_file_load.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/folio_migration_tools/config_file_load.py b/src/folio_migration_tools/config_file_load.py index 3413ee03..2c968d67 100644 --- a/src/folio_migration_tools/config_file_load.py +++ b/src/folio_migration_tools/config_file_load.py @@ -6,6 +6,8 @@ def deep_merge(target_dict, source_dict, merge_keys=("name", "fileName", "file_n # deep_merge # # Deeply merges nested dictionaries and lists of dictionaries. + # **Muatates the target_dict with the changes**, and returns it. + # # For lists, attempts to match items based on the first found key in merge_keys in each item. # If no key is found, or no match, the item is appended to the target list. #