我正在实现这样的树
class A: children: List[A]
但是在 PyCharm 中我得到
Unresolved reference 'A'
您可以使用字符串:
class A: children: List['A']
这是转发参考文献