diff --git a/ethers-solc/src/compile/mod.rs b/ethers-solc/src/compile/mod.rs index 8fea2f52..57b3310a 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 }