mirror of https://github.com/astral-sh/ruff
Use match
This commit is contained in:
parent
51b7dbb89c
commit
96a50810a6
|
|
@ -15,7 +15,7 @@ pub fn parse_strings(
|
|||
let initial_kind = (values[0].1 .1 == StringKind::U).then(|| "u".to_owned());
|
||||
|
||||
// Optimization: fast-track the common case of a single string.
|
||||
if values.len() == 1 && matches!(&values[0].1 .1, StringKind::Normal | StringKind::U) {
|
||||
if matches!(&*values, [(_, (_, StringKind::Normal | StringKind::U), _)]) {
|
||||
let value = values.into_iter().last().unwrap().1 .0;
|
||||
return Ok(Expr::new(
|
||||
initial_start,
|
||||
|
|
|
|||
Loading…
Reference in New Issue