嘿,我有点让 Pyreverse 工作了,它现在正在显示我的课程,但它没有在课程之间建立联系。
我在一堂课上
class webserver:
print('stuff')
getcaller1 = getcaller.GetCaller()
device_dict = getcaller1.abc(m)
另一个包含
class GetCaller():
def __init__():
print('init')
def abc(self, m):
devices=get(m)
但是,我在 classes.png 中得到的只是这个(类之间没有线条或箭头)
该代码有效,如果我在 pip 安装的模块上运行 pyreverse 的东西,pyreverse 会打印这些箭头,但我自己的项目中肯定缺少一些东西。python 类还有哪些其他类型的关系?