Remove unnecessary Ok wrapper

This commit is contained in:
Matthias 2022-04-12 01:39:38 +02:00 committed by GitHub
parent c72f9369ab
commit da7bbf113d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -545,7 +545,7 @@ where
ErrorKind: From<E>,
{
let client = ClientBuilder::builder().build().client()?;
Ok(client.check(request).await?)
client.check(request).await?
}
#[cfg(test)]