clippy: collapse nested ifs into match guards (rust 1.98)

This commit is contained in:
2026-09-18 10:19:16 +02:00
parent b20acf3199
commit 1aa0ca3d2f
2 changed files with 8 additions and 14 deletions
+2 -4
View File
@@ -282,10 +282,8 @@ pub fn read_pyproject(path: &Path) -> Option<PyProject> {
("project", "description") => project.description = Some(value), ("project", "description") => project.description = Some(value),
("project", "license") => project.license = license_text(&value), ("project", "license") => project.license = license_text(&value),
("project.urls", "Homepage") => project.homepage = Some(value), ("project.urls", "Homepage") => project.homepage = Some(value),
("project.scripts", key) => { ("project.scripts", key) if project.script.is_none() => {
if project.script.is_none() { project.script = Some(key.to_string());
project.script = Some(key.to_string());
}
} }
_ => {} _ => {}
} }
+6 -10
View File
@@ -379,11 +379,9 @@ fn text_inner(
input.push(c); input.push(c);
render(Render::Line(&input))?; render(Render::Line(&input))?;
} }
event::KeyCode::Backspace => { event::KeyCode::Backspace if !input.is_empty() => {
if !input.is_empty() { input.pop();
input.pop(); render(Render::Line(&input))?;
render(Render::Line(&input))?;
}
} }
_ => {} _ => {}
} }
@@ -433,11 +431,9 @@ fn confirm_inner(
input.push(c); input.push(c);
render(Render::Line(&input))?; render(Render::Line(&input))?;
} }
event::KeyCode::Backspace => { event::KeyCode::Backspace if !input.is_empty() => {
if !input.is_empty() { input.pop();
input.pop(); render(Render::Line(&input))?;
render(Render::Line(&input))?;
}
} }
_ => {} _ => {}
} }