Reports classic style classes usage. This inspection applies only to Python 2.

Example:

class A:
    pass

With quick-fixes provided by the IDE, this code fragment changes to:

class A(object):
    def __init__(self):
        pass