From 85d7c07fa83fc1e7b7ffcf4a59b739ff22afd422 Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Mon, 13 Feb 2023 17:10:01 -0800 Subject: [PATCH] chore: fmt --- 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 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 }