In Python 3 all classes implicitly inherit from object. This transform removes object from the base class list
of all classes. This transform is only applied if the target Python version is 3.0 or higher.
This transform is always safe to use and enabled by default.
Disable this source transformation by passing the remove_object_base=False argument to the :func:`python_minifier.minify` function,
or passing --no-remove-object-base to the pyminify command.
.. literalinclude:: remove_object_base.py
.. literalinclude:: remove_object_base.min.py
:language: python