Skip to content

Commit 792f942

Browse files
authored
fix: remove needless borrow and unncessary import to pass pre-commit (#116)
Signed-off-by: Kevin Lefevre <archi@kiln.fi>
1 parent aed00e8 commit 792f942

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/common/src/commit/client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ impl SignerClient {
5151
/// requested.
5252
// TODO: add more docs on how proxy keys work
5353
pub async fn get_pubkeys(&self) -> Result<GetPubkeysResponse, SignerClientError> {
54-
let res = self.client.get(&format!("{}{}", self.url, GET_PUBKEYS_PATH)).send().await?;
54+
let res = self.client.get(format!("{}{}", self.url, GET_PUBKEYS_PATH)).send().await?;
5555

5656
if !res.status().is_success() {
5757
return Err(SignerClientError::FailedRequest {

0 commit comments

Comments
 (0)