Removed unnecessary type bindings.

This commit is contained in:
michaelgrigoryan25 2022-12-06 20:41:32 +04:00
parent 309c4f9b51
commit 3a99a733cd

View file

@ -698,9 +698,9 @@ pub fn from_cmdline_args(mut opts: Options, args: &[String]) -> ArgumentParsingR
let url_opt = url_opt.and_then(|url_string| { let url_opt = url_opt.and_then(|url_string| {
parse_url_or_filename(&cwd, url_string) parse_url_or_filename(&cwd, url_string)
.or_else(|error| { .map_err(|error| {
warn!("URL parsing failed ({:?}).", error); warn!("URL parsing failed ({:?}).", error);
Err(error) error
}) })
.ok() .ok()
}); });
@ -722,7 +722,7 @@ pub fn from_cmdline_args(mut opts: Options, args: &[String]) -> ArgumentParsingR
Err(_) => Some(OutputOptions::FileName(argument)), Err(_) => Some(OutputOptions::FileName(argument)),
}, },
}, },
None => Some(OutputOptions::Stdout(5.0 as f64)), None => Some(OutputOptions::Stdout(5.0)),
} }
} else { } else {
// if the p option doesn't exist: // if the p option doesn't exist: