Skip to content

Commit

Permalink
chore(jans-cedarling): clippy error from merge
Browse files Browse the repository at this point in the history
Signed-off-by: John Anderson <[email protected]>
  • Loading branch information
djellemah committed Nov 7, 2024
1 parent 4d3f54e commit 6f8465d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ impl HttpClient {
Err(e) => return Err(KeyServiceError::MaxHttpRetriesReached(e)), // Exit if max retries exceeded
}
};
Ok(response
response
.error_for_status()
.map_err(KeyServiceError::HttpStatus)?)
.map_err(KeyServiceError::HttpStatus)
}
}

Expand Down

0 comments on commit 6f8465d

Please sign in to comment.