pylint-errors

R0205 (useless-object-inheritance)

:x: Problematic code:

class Foo(object):
    pass

:heavy_check_mark: Correct code:

class Foo:
    pass

Rationale:

Used when a class inherits from object, which under Python 3 is implicit, hence can be safely removed from bases.