Fix Clippy error

This commit is contained in:
Charlie Marsh
2023-01-11 19:59:00 -05:00
parent 4523885268
commit 588399e415

View File

@@ -231,7 +231,7 @@ pub fn use_ternary_operator(checker: &mut Checker, stmt: &Stmt, parent: Option<&
}
fn compare_expr(expr1: &ComparableExpr, expr2: &ComparableExpr) -> bool {
expr1.eq(&expr2)
expr1.eq(expr2)
}
/// SIM401