mirror of
https://github.com/Hopiu/lychee.git
synced 2026-05-18 18:51:06 +00:00
Remove unnecessary Ok wrapper
This commit is contained in:
parent
c72f9369ab
commit
da7bbf113d
1 changed files with 1 additions and 1 deletions
|
|
@ -545,7 +545,7 @@ where
|
||||||
ErrorKind: From<E>,
|
ErrorKind: From<E>,
|
||||||
{
|
{
|
||||||
let client = ClientBuilder::builder().build().client()?;
|
let client = ClientBuilder::builder().build().client()?;
|
||||||
Ok(client.check(request).await?)
|
client.check(request).await?
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue