diff --git a/src/checkers/ast.rs b/src/checkers/ast.rs index bd342d70ea..af98c85462 100644 --- a/src/checkers/ast.rs +++ b/src/checkers/ast.rs @@ -2720,15 +2720,17 @@ where if self.settings.enabled.contains(&CheckCode::SIM210) { flake8_simplify::plugins::explicit_true_false_in_ifexpr( self, expr, test, body, orelse, - ) + ); } if self.settings.enabled.contains(&CheckCode::SIM211) { flake8_simplify::plugins::explicit_false_true_in_ifexpr( self, expr, test, body, orelse, - ) + ); } if self.settings.enabled.contains(&CheckCode::SIM212) { - flake8_simplify::plugins::twisted_arms_in_ifexpr(self, expr, test, body, orelse) + flake8_simplify::plugins::twisted_arms_in_ifexpr( + self, expr, test, body, orelse, + ); } } ExprKind::ListComp { elt, generators } | ExprKind::SetComp { elt, generators } => {