I have this class:
class Class:
pass
The documentation generated by sphinx (in case it matters, I used the autodoc extension) looks like this:
class package.Class
Bases: object
The inheritance from object isn't useful information for the reader, and therefore I don't want it in my documentation. The output I'd like to see is this:
class package.Class
Is there a way to exclude object from the list of base classes?