Clippy: Remove un-needed return

This commit is contained in:
andy.boot
2022-08-15 12:04:22 +01:00
parent ad2e52e211
commit c5adff5348
+1 -1
View File
@@ -369,7 +369,7 @@ fn human_readable_number(size: u64, iso: bool) -> String {
}
}
}
return format!("{}B", size);
format!("{}B", size)
}
mod tests {