chore: Fix lint warnings for all targets (#240)

This commit is contained in:
Santiago Carmuega 2023-03-24 10:59:49 +01:00 committed by GitHub
parent 66a095df4a
commit ae7e1f5c82
15 changed files with 93 additions and 94 deletions

View file

@ -97,7 +97,7 @@ impl Error {
}
pub fn custom(error: Box<dyn std::error::Error>) -> Error {
Error::Custom(format!("{}", error))
Error::Custom(format!("{error}"))
}
}