forked from BigfootDev/flatbuffers
Fix python type annotation output when not enabled (#7983)
Fixes #7971 Co-authored-by: Derek Bailey <derekbailey@google.com>
This commit is contained in:
@@ -81,7 +81,7 @@ def AddIncludedFilenames(builder, includedFilenames):
|
||||
def SchemaFileStartIncludedFilenamesVector(builder, numElems):
|
||||
return builder.StartVector(4, numElems, 4)
|
||||
|
||||
def StartIncludedFilenamesVector(builder, numElems: int) -> int:
|
||||
def StartIncludedFilenamesVector(builder, numElems):
|
||||
return SchemaFileStartIncludedFilenamesVector(builder, numElems)
|
||||
|
||||
def SchemaFileEnd(builder):
|
||||
|
||||
Reference in New Issue
Block a user