From 56ad12fe154d377215f5e5e26586488360d722f7 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Mon, 13 Feb 2023 21:39:57 +0100 Subject: [PATCH] chore(clippy): fix new lint This commit addresses the new clippy lint `extra_unused_type_parameters` --- ethers-solc/src/compile/mod.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ethers-solc/src/compile/mod.rs b/ethers-solc/src/compile/mod.rs index 25d5307f9..57b3310af 100644 --- a/ethers-solc/src/compile/mod.rs +++ b/ethers-solc/src/compile/mod.rs @@ -572,10 +572,7 @@ impl Solc { #[cfg(feature = "async")] impl Solc { /// Convenience function for compiling all sources under the given path - pub async fn async_compile_source( - &self, - path: impl AsRef, - ) -> Result { + pub async fn async_compile_source(&self, path: impl AsRef) -> Result { self.async_compile(&CompilerInput::with_sources(Source::async_read_all_from(path).await?)) .await }