diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-03-11 23:48:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-11 23:48:00 -0400 |
commit | ad6b00a2bf061a90c72737d0ecc4a58bb0a89550 (patch) | |
tree | daf342fa1d0dcde202a116ac010f310ba4321fa9 /cli/tools/installer.rs | |
parent | c38c14f51f2edc8d25f349de52fc1268b97b59b2 (diff) |
chore: enable clippy unused_async rule (#22834)
Diffstat (limited to 'cli/tools/installer.rs')
-rw-r--r-- | cli/tools/installer.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/tools/installer.rs b/cli/tools/installer.rs index a48599ada..1b1b6f30c 100644 --- a/cli/tools/installer.rs +++ b/cli/tools/installer.rs @@ -242,8 +242,7 @@ pub async fn install_command( install_flags: InstallFlags, ) -> Result<(), AnyError> { // ensure the module is cached - CliFactory::from_flags(flags.clone()) - .await? + CliFactory::from_flags(flags.clone())? .module_load_preparer() .await? .load_and_type_check_files(&[install_flags.module_url.clone()]) |