Skip to content

Commit d0ccfaf

Browse files
committed
Fix failing CI due to formatting
1 parent 19bb81d commit d0ccfaf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/main.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,11 @@ fn main() -> Result<(), Box<Error>> {
152152
}
153153
let end = Instant::now();
154154
if verbose {
155-
println!("Took {:?} to parse {}", end.duration_since(start), repo.name);
155+
println!(
156+
"Took {:?} to parse {}",
157+
end.duration_since(start),
158+
repo.name
159+
);
156160
}
157161
println!("{}", repo);
158162
for mut author in repo.authors.values() {

0 commit comments

Comments
 (0)