Skip to content

Commit

Permalink
cargo fmt sdk/iot_deviceupdate/src/client.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
cataggar committed May 14, 2024
1 parent 33dc607 commit b3cb66e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion sdk/iot_deviceupdate/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,12 @@ fn extract_endpoint(url: &Url) -> azure_core::Result<String> {
})?
.1;

Ok(format!("{}://{}{}", url.scheme(), endpoint, azure_core::auth::DEFAULT_SCOPE_SUFFIX))
Ok(format!(
"{}://{}{}",
url.scheme(),
endpoint,
azure_core::auth::DEFAULT_SCOPE_SUFFIX
))
}

#[cfg(test)]
Expand Down

0 comments on commit b3cb66e

Please sign in to comment.