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
+1 -3
View File
@@ -282,11 +282,9 @@ pub fn read_pyproject(path: &Path) -> Option<PyProject> {
("project", "description") => project.description = Some(value),
("project", "license") => project.license = license_text(&value),
("project.urls", "Homepage") => project.homepage = Some(value),
("project.scripts", key) => {
if project.script.is_none() {
("project.scripts", key) if project.script.is_none() => {
project.script = Some(key.to_string());
}
}
_ => {}
}
}
+2 -6
View File
@@ -379,12 +379,10 @@ fn text_inner(
input.push(c);
render(Render::Line(&input))?;
}
event::KeyCode::Backspace => {
if !input.is_empty() {
event::KeyCode::Backspace if !input.is_empty() => {
input.pop();
render(Render::Line(&input))?;
}
}
_ => {}
}
}
@@ -433,12 +431,10 @@ fn confirm_inner(
input.push(c);
render(Render::Line(&input))?;
}
event::KeyCode::Backspace => {
if !input.is_empty() {
event::KeyCode::Backspace if !input.is_empty() => {
input.pop();
render(Render::Line(&input))?;
}
}
_ => {}
}
};