Comply with Clippy rule single-match

This commit is contained in:
Lawrence Chou 2022-10-14 14:16:10 +08:00
parent 3c3ae3ff98
commit 9ebc73e6ac
No known key found for this signature in database
GPG Key ID: 56B65EC9D482438D

View File

@ -287,14 +287,13 @@ impl Opt {
config_read_from = Some(config_file_path); config_read_from = Some(config_file_path);
} }
Err(e) => { Err(e) => {
match user_specified_config_file_path { if let Some(path) = user_specified_config_file_path {
// If we have an error while reading the file defined by the user. // If we have an error while reading the file defined by the user.
Some(path) => anyhow::bail!( anyhow::bail!(
"unable to open or read the {:?} configuration file: {}.", "unable to open or read the {:?} configuration file: {}.",
path, path,
e, e,
), )
None => (),
} }
} }
} }