Skip to content

Commit c7b6b66

Browse files
fix: remove a single type hint to retain 2.7.x compatibility (#8799)
Co-authored-by: Hjalti Leifsson <[email protected]>
1 parent ac8b124 commit c7b6b66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/flatbuffers/builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def __init__(self, initialSize=1024):
163163
## @endcond
164164
self.finished = False
165165

166-
def Clear(self) -> None:
166+
def Clear(self):
167167
## @cond FLATBUFFERS_INTERNAL
168168
self.current_vtable = None
169169
self.head = UOffsetTFlags.py_type(len(self.Bytes))

0 commit comments

Comments
 (0)