From 9a391df0f008b1d73ef80c562f11827419221e44 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 21 Jul 2025 13:03:21 -1000 Subject: [PATCH] cleanup --- script/api_protobuf/api_protobuf.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/script/api_protobuf/api_protobuf.py b/script/api_protobuf/api_protobuf.py index d39e7422fb..cb87ddda3b 100755 --- a/script/api_protobuf/api_protobuf.py +++ b/script/api_protobuf/api_protobuf.py @@ -946,6 +946,11 @@ class FixedArrayRepeatedType(TypeInfo): o += "}\n" return o + def dump(self, name: str) -> str: + # This is used when dumping the array itself (not its elements) + # Since dump_content handles the iteration, this is not used directly + return "" + def get_size_calculation(self, name: str, force: bool = False) -> str: # For fixed arrays, we always encode all elements # Check if this is a fixed-size type by seeing if it has a fixed byte count