mirror of
https://github.com/tiqi-group/pydase.git
synced 2026-02-13 22:08:41 +01:00
fixes dictionary serialization for keys that are not strings
This commit is contained in:
@@ -167,10 +167,12 @@ class Serializer:
|
||||
def _serialize_dict(obj: dict[str, Any], access_path: str = "") -> SerializedDict:
|
||||
readonly = False
|
||||
doc = get_attribute_doc(obj)
|
||||
value = {
|
||||
key: Serializer.serialize_object(val, access_path=f'{access_path}["{key}"]')
|
||||
for key, val in obj.items()
|
||||
}
|
||||
value = {}
|
||||
for key, val in obj.items():
|
||||
processed_key = key if not isinstance(key, str) else f'"{key}"'
|
||||
value[key] = Serializer.serialize_object(
|
||||
val, access_path=f"{access_path}[{processed_key}]"
|
||||
)
|
||||
return {
|
||||
"full_access_path": access_path,
|
||||
"type": "dict",
|
||||
|
||||
Reference in New Issue
Block a user