misc: remove unneeded clippy exception

This commit is contained in:
Kat Marchán 2019-10-16 16:46:55 -04:00
parent 42f4e1da63
commit 7aabb55de5
No known key found for this signature in database
GPG Key ID: AEB529C08A3C7E9E
1 changed files with 0 additions and 1 deletions

View File

@ -59,7 +59,6 @@ pub fn open(cache: &Path, sri: Integrity) -> Result<Reader, Error> {
})
}
#[allow(clippy::needless_lifetimes)]
pub async fn open_async(cache: &Path, sri: Integrity) -> Result<AsyncReader, Error> {
Ok(AsyncReader {
fd: async_std::fs::File::open(cache).await?,