From de7badd007071d2873113d53e9da939989328e90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mose=20M=C3=BCller?= Date: Thu, 25 Apr 2024 14:22:49 +0200 Subject: [PATCH] fixes exception message --- src/pydase/utils/serialization/serializer.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pydase/utils/serialization/serializer.py b/src/pydase/utils/serialization/serializer.py index d75ab2c..7ed77b2 100644 --- a/src/pydase/utils/serialization/serializer.py +++ b/src/pydase/utils/serialization/serializer.py @@ -465,13 +465,13 @@ def get_next_level_dict_by_key( # Implementation remains the same as the earlier code snippet # Check if the key contains an index part like 'attr_name[]' - attr_name, key = parse_keyed_attribute(attr_name) + attr_name_base, key = parse_keyed_attribute(attr_name) # Add the attr_name key to the serialized object if it does not exist AND the key # is None. Otherwise, we are trying to add a key-value pair/item to a non-existing # object serialized_object = ensure_exists( - serialization_dict, attr_name, allow_add_key=allow_append and key is None + serialization_dict, attr_name_base, allow_add_key=allow_append and key is None ) if key is not None: @@ -481,12 +481,12 @@ def get_next_level_dict_by_key( ) except (KeyError, IndexError) as e: raise SerializationPathError( - f"Error occured trying to change 'attr_list[10]': {e}" + f"Error occured trying to change '{attr_name}': {e}" ) if not isinstance(serialized_object, dict): raise SerializationValueError( - f"Expected a dictionary at '{attr_name}', but found type " + f"Expected a dictionary at '{attr_name_base}', but found type " f"'{type(serialized_object).__name__}' instead." )