All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
object
The class is inheriting from object, which is implicit under Python 3 , hence can be safely removed from bases.
Not preferred:
class Foo(object): """Foo bar baz"""
Preferred:
class Foo: """Foo bar baz"""