useless-object-inheritance / R0205#

Message emitted:

Class %r inherits from object, can be safely removed from bases in python3

Description:

Used when a class inherit from object, which under python3 is implicit, hence can be safely removed from bases.

Correct code:

class Banana:
    ...

Problematic code:

class Banana(object):  # [useless-object-inheritance]
    ...

Created by the classes checker.