I have a super class with a method that calls other methods that are only defined in its sub classes. That\'s why, when I create an instance of my super class and call its m
You're talking about Abstract Base Classes, and the Python language does not support them natively.
However, in the standard library, there is a module you can use to help you along. Check out the abc documentation.