From c50967c1f10013ce91258b308313d7eabeb05155 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Mon, 16 Oct 2023 11:44:47 +0100 Subject: refactor(tvix/cli): clippy Change-Id: I35a28a320c890f62e6a76641dfdf99e33e839c02 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9749 Tested-by: BuildkiteCI Reviewed-by: raitobezarius Autosubmit: flokli --- tvix/cli/src/tvix_store_io.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tvix') diff --git a/tvix/cli/src/tvix_store_io.rs b/tvix/cli/src/tvix_store_io.rs index 871c902306de..e73076c4821a 100644 --- a/tvix/cli/src/tvix_store_io.rs +++ b/tvix/cli/src/tvix_store_io.rs @@ -61,7 +61,7 @@ impl TvixStoreIO { sub_path: &Path, ) -> Result, io::Error> { let path_info_service = self.path_info_service.clone(); - let digest = store_path.digest.clone(); + let digest = store_path.digest; let task = self .tokio_handle .spawn(async move { path_info_service.get(digest).await }); -- cgit 1.4.1