use rustpython_ast::{Expr, Keyword, Stmt}; use crate::ast::checkers; use crate::autofix::{fixer, fixes}; use crate::check_ast::Checker; pub fn useless_object_inheritance( checker: &mut Checker, stmt: &Stmt, name: &str, bases: &[Expr], keywords: &[Keyword], ) { let scope = checker.current_scope(); if let Some(mut check) = checkers::useless_object_inheritance(name, bases, scope) { if matches!(checker.autofix, fixer::Mode::Generate | fixer::Mode::Apply) { if let Some(fix) = fixes::remove_class_def_base( &mut checker.locator, &stmt.location, check.location, bases, keywords, ) { check.amend(fix); } } checker.add_check(check); } }