mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 19:37:51 +03:00
Fix clippy lints
This commit is contained in:
parent
08fa76525a
commit
3bacabcb53
1 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@ macro_rules! fl {
|
|||
/// Returns an error if a filename is given that does not exist.
|
||||
fn load_aliases(filename: Option<String>) -> io::Result<HashMap<String, Vec<String>>> {
|
||||
let buf = filename
|
||||
.map(|f| read_to_string(f))
|
||||
.map(read_to_string)
|
||||
.transpose()?
|
||||
.unwrap_or_default();
|
||||
|
||||
|
@ -389,7 +389,7 @@ fn decrypt(opts: AgeOptions) -> Result<(), error::DecryptError> {
|
|||
)?;
|
||||
|
||||
if identities.is_empty() {
|
||||
Err(error::DecryptError::MissingIdentities)?;
|
||||
return Err(error::DecryptError::MissingIdentities);
|
||||
}
|
||||
|
||||
decryptor
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue