chore: address Rust 1.66 clippy lints (#162)

This commit is contained in:
Sanchith Hegde
2022-12-16 12:21:31 +05:30
committed by GitHub
parent aaa1901c5d
commit 8f43489989
4 changed files with 5 additions and 5 deletions

View File

@ -617,7 +617,7 @@ impl api::IncomingWebhook for Adyen {
let response: adyen::AdyenResponse = notif.into();
let res_json = serde_json::to_value(&response)
let res_json = serde_json::to_value(response)
.into_report()
.change_context(errors::ConnectorError::WebhookResourceObjectNotFound)?;