Fix clippy: Remove unecessary ? and Ok() wrapping

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer 2022-12-27 15:52:06 +01:00
parent 19e4878460
commit b46ec54cc4
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ impl<'a> TryInto<App> for AppBuilder<'a> {
type Error = Error; type Error = Error;
fn try_into(self) -> Result<App> { fn try_into(self) -> Result<App> {
Ok(self.build()?) self.build()
} }
} }