Obey new clippy

Clippy is like having a reviewer fix your dodgy code.
This commit is contained in:
bootandy
2019-06-30 20:05:03 +01:00
parent 12775db94b
commit 876609f2cb
5 changed files with 69 additions and 43 deletions
+7 -1
View File
@@ -91,7 +91,13 @@ fn main() {
Some(d) => trim_deep_ones(sorted_data, d, &simplified_dirs),
}
};
draw_it(permissions, !use_full_path, depth, simplified_dirs, biggest_ones);
draw_it(
permissions,
!use_full_path,
depth,
simplified_dirs,
biggest_ones,
);
}
#[cfg(test)]