Remove unnessesary unwrap

This commit is contained in:
LDprg
2023-07-13 22:32:22 +02:00
committed by GitHub
parent 2866a1d1b2
commit b851935e08

View File

@@ -25,8 +25,7 @@ fn main() {
} }
Some((_, _)) => { Some((_, _)) => {
cli.about("Command not found try existing ones!") cli.about("Command not found try existing ones!")
.print_help() .print_help();
.unwrap();
} }
_ => unreachable!(), _ => unreachable!(),
} }