mirror of
https://github.com/Hopiu/lychee.git
synced 2026-03-29 19:00:25 +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>,
|
||||
{
|
||||
let client = ClientBuilder::builder().build().client()?;
|
||||
Ok(client.check(request).await?)
|
||||
client.check(request).await?
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
|
|
|
|||
Loading…
Reference in a new issue