Skip to content

Commit

Permalink
Make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerollmops committed Jan 8, 2025
1 parent f1eaa46 commit f9d536d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ impl Client for HttpClient {

let _ = self
.client
.post(&format!("{}{}", self.host, path))
.post(format!("{}{}", self.host, path))
.basic_auth(write_key, Some(""))
.json(&msg)
.send()
Expand Down

0 comments on commit f9d536d

Please sign in to comment.