mirror of
https://github.com/sharkdp/bat.git
synced 2025-08-18 03:51:14 +02:00
Use unwrap
This commit is contained in:
@@ -13,5 +13,5 @@ fn main() {
|
|||||||
.wrapping_mode(WrappingMode::Character)
|
.wrapping_mode(WrappingMode::Character)
|
||||||
.input_file(file!())
|
.input_file(file!())
|
||||||
.print()
|
.print()
|
||||||
.expect("no errors");
|
.unwrap();
|
||||||
}
|
}
|
||||||
|
@@ -9,5 +9,5 @@ fn main() {
|
|||||||
.line_numbers(true)
|
.line_numbers(true)
|
||||||
.input_files(std::env::args_os().skip(1))
|
.input_files(std::env::args_os().skip(1))
|
||||||
.print()
|
.print()
|
||||||
.expect("no errors");
|
.unwrap();
|
||||||
}
|
}
|
||||||
|
@@ -2,8 +2,5 @@
|
|||||||
use bat::PrettyPrinter;
|
use bat::PrettyPrinter;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
PrettyPrinter::new()
|
PrettyPrinter::new().input_file(file!()).print().unwrap();
|
||||||
.input_file(file!())
|
|
||||||
.print()
|
|
||||||
.expect("no errors");
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user