removed unwraps (#430)

This commit is contained in:
Fernando Herrera
2021-12-04 12:38:21 +00:00
committed by GitHub
parent eed22605ef
commit 8a06ea133b
24 changed files with 233 additions and 159 deletions

View File

@ -875,7 +875,7 @@ impl WrappedTable {
break;
}
writeln!(&mut total_output, "{}", output).unwrap();
writeln!(&mut total_output, "{}", output).expect("writing should be done to buffer");
}
total_output
}