Skip to content

Commit

Permalink
SM-874: Fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
coltonhurst committed Oct 18, 2023
1 parent 8f0885e commit 578f41c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions crates/bitwarden/src/secrets_manager/secrets/delete.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,7 @@ impl SecretDeleteResponse {

match response.error {
Some(error) => Err(Error::ApiError(vec![(id, error)])),
None => Ok(SecretDeleteResponse {
id: id,
error: None,
}),
None => Ok(SecretDeleteResponse { id, error: None }),
}
}
}

0 comments on commit 578f41c

Please sign in to comment.