1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-02 03:12:25 +01:00

Use unwrap

This commit is contained in:
sharkdp
2020-04-22 21:46:01 +02:00
committed by David Peter
parent 702cb198da
commit b76f5e72d4
3 changed files with 3 additions and 6 deletions

View File

@@ -9,5 +9,5 @@ fn main() {
.line_numbers(true)
.input_files(std::env::args_os().skip(1))
.print()
.expect("no errors");
.unwrap();
}