reproduce:
from box import Box
a = Box({"list_of_dicts": [[{"example1": 1}]]})
a.list_of_dicts.append([{"example2": 2}])
print(a)
# {'list_of_dicts': [[{'example1': 1}], [...]]}
# expected output
# {'list_of_dicts': [[{'example1': 1}], [{'example2': 2}]]}
Using python 3.10.9 and python-box 6.0.2
reproduce:
Using python 3.10.9 and python-box 6.0.2