Make cargo fmt happy

This commit is contained in:
Clément Renault 2025-04-01 11:27:41 +02:00
parent 64477aac60
commit a0bfcf8872
No known key found for this signature in database
GPG key ID: F250A4C4E3AE5F5F
13 changed files with 29 additions and 38 deletions

View file

@ -169,7 +169,8 @@ pub fn is_dry_run(req: &HttpRequest, opt: &Opt) -> Result<bool, ResponseError> {
)
})
})
.transpose()?.is_some_and(|s| s.to_lowercase() == "true"))
.transpose()?
.is_some_and(|s| s.to_lowercase() == "true"))
}
#[derive(Debug, Serialize, ToSchema)]