enable unused_qualifications lint

This commit is contained in:
Charles Hall 2024-05-21 22:00:54 -07:00
parent d7e945f4c5
commit 793d809ac6
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF
7 changed files with 12 additions and 17 deletions

View file

@ -326,7 +326,7 @@ where
};
let mut http_request =
http::Request::builder().uri(parts.uri).method(parts.method);
Request::builder().uri(parts.uri).method(parts.method);
*http_request.headers_mut().unwrap() = parts.headers;
if let Some(CanonicalJsonValue::Object(json_body)) = &mut json_body {