I need to identify if a class is an extension of another class when I get into its ast node. As the parenthesis with a super-class inside does not make part of the class name I'm not being able to identify that.
if isinstance(class, ast.ClassDef):
After I know that that node I'm in is a class definition, now I need to know if this class extends another, how am I supposed to see that?