fix another unrelated issue in DictMutableKeysEntity

This commit is contained in:
iLLiCiTiT 2021-06-09 18:15:08 +02:00
parent ede5013dbd
commit d199fad0e6

View file

@ -467,7 +467,7 @@ class DictMutableKeysEntity(EndpointEntity):
if self.store_as_list:
output = []
for key, child_entity in self.children_by_key.items():
output.append(key, child_entity.value)
output.append([key, child_entity.value])
return output
output = {}