The following simplified UML diagrams just show you the most important associations of the classes.
Is the graph for:
#Just a superclass class Superclass(): pass #first subclass level class Subclass(Superclass): pass #Second subclass level class AnotherSubclass(Subclass): pass #Has/Is no Superclass class SimpleClass(): pass