我在代码中定义了一个
TypedDict
class VectorDict(TypedDict): x: float y: float z: float
当我生成文档时,我得到以下结果:
如何抑制
->
解决方案是添加文档字符串:
class VectorDict(TypedDict): """ Description here """ x: float y: float z: float
由此我得到: