clippy: fix latest warnings (#855)

This commit is contained in:
Paolo Barbolini
2023-01-29 14:46:57 +01:00
committed by GitHub
parent cc25223914
commit f8f19d6af5
23 changed files with 49 additions and 50 deletions

View File

@@ -27,6 +27,6 @@ async fn main() {
// Send the email
match mailer.send(email).await {
Ok(_) => println!("Email sent successfully!"),
Err(e) => panic!("Could not send email: {:?}", e),
Err(e) => panic!("Could not send email: {e:?}"),
}
}