[OASIS] repeated property keys should be merged, not overwritten

This commit is contained in:
Jan Petykiewicz 2026-03-31 19:00:38 -07:00
commit 08421d6a54
2 changed files with 20 additions and 1 deletions

View file

@ -714,7 +714,7 @@ def properties_to_annotations(
string = repr(value)
logger.warning(f'Converting property value for key ({key}) to string ({string})')
values.append(string)
annotations[key] = values
annotations.setdefault(key, []).extend(values)
return annotations