Hey I kinda got Pyreverse to work, it's now showing my classes but it doesn't draw connections between the classes.
In one class I got
class webserver:
    print('stuff')
    getcaller1 = getcaller.GetCaller()
    device_dict = getcaller1.abc(m)
and the other one contains
class GetCaller():
    def __init__():
        print('init')
    def abc(self, m):
        devices=get(m)
However, all I am getting in my classes.png is this (no lines or arrows in between the classes)

The code works and if I run pyreverse stuff on pip-installed modules, pyreverse does print those arrows but there must be something I am missing in my own project. What other kind of relationships can python classes have?