From c7b6b66ccb45f9ebeff8ac6f07f9acba8d70014a Mon Sep 17 00:00:00 2001 From: Justin Davis Date: Sun, 23 Nov 2025 15:00:21 -0500 Subject: [PATCH] fix: remove a single type hint to retain 2.7.x compatibility (#8799) Co-authored-by: Hjalti Leifsson --- python/flatbuffers/builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/flatbuffers/builder.py b/python/flatbuffers/builder.py index 2fe3aa367..b6ae8623d 100644 --- a/python/flatbuffers/builder.py +++ b/python/flatbuffers/builder.py @@ -163,7 +163,7 @@ class Builder(object): ## @endcond self.finished = False - def Clear(self) -> None: + def Clear(self): ## @cond FLATBUFFERS_INTERNAL self.current_vtable = None self.head = UOffsetTFlags.py_type(len(self.Bytes))