clippy: collapse nested ifs into match guards (rust 1.98)
This commit is contained in:
@@ -282,10 +282,8 @@ 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.script = Some(key.to_string());
|
||||
}
|
||||
("project.scripts", key) if project.script.is_none() => {
|
||||
project.script = Some(key.to_string());
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
|
||||
+6
-10
@@ -379,11 +379,9 @@ fn text_inner(
|
||||
input.push(c);
|
||||
render(Render::Line(&input))?;
|
||||
}
|
||||
event::KeyCode::Backspace => {
|
||||
if !input.is_empty() {
|
||||
input.pop();
|
||||
render(Render::Line(&input))?;
|
||||
}
|
||||
event::KeyCode::Backspace if !input.is_empty() => {
|
||||
input.pop();
|
||||
render(Render::Line(&input))?;
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
@@ -433,11 +431,9 @@ fn confirm_inner(
|
||||
input.push(c);
|
||||
render(Render::Line(&input))?;
|
||||
}
|
||||
event::KeyCode::Backspace => {
|
||||
if !input.is_empty() {
|
||||
input.pop();
|
||||
render(Render::Line(&input))?;
|
||||
}
|
||||
event::KeyCode::Backspace if !input.is_empty() => {
|
||||
input.pop();
|
||||
render(Render::Line(&input))?;
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user