mirror of
https://github.com/uutils/coreutils
synced 2024-12-14 07:12:44 +00:00
clippy: fix unnecessary return warnings
This commit is contained in:
parent
efc70ade68
commit
ef32061f82
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue