本文主要是介绍【flatbuffer】——TypeError: EndVector() takes 1 positional argument but 2 were given,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
flatbuffer
版本
1.12.0
描述
采用flatbuffer的python接口进行操作的时候报错
解决
EndVector
is a method, so the first parameter is the object itself, and the second parameter is len(buf). Just remove the len(buf)
part.
这篇关于【flatbuffer】——TypeError: EndVector() takes 1 positional argument but 2 were given的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!