Skip to content

Commit

Permalink
Include member array size in output dictionary (#2165)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kronos3 committed Aug 1, 2023
1 parent 29e8b27 commit 2cab871
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Autocoders/Python/src/fprime_ac/utils/TopDictGenerator.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ def check_for_serial_xml(self):
member_elem.attrib["description"] = member_comment
if member_default is not None:
member_elem.attrib["default"] = member_default
if member_array_size is not None:
member_elem.attrib["size"] = member_array_size
if isinstance(member_type, tuple):
type_name = "{}::{}::{}".format(
serializable_type,
Expand Down

0 comments on commit 2cab871

Please sign in to comment.