clippy: fix unnecessary return warnings

This commit is contained in:
ctsk
2023-01-29 22:09:11 +01:00
parent efc70ade68
commit ef32061f82
+1 -1
View File
@@ -47,7 +47,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
.map(|s| s.as_str())
.collect::<Vec<_>>();
return sleep(&numbers);
sleep(&numbers)
}
pub fn uu_app() -> Command {