From 98a17dbdf9f6756b5162d34eda17098918e991cf Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 18 Feb 2024 14:54:53 +0700 Subject: chore(tvix/glue): remove unnecessary assignment Change-Id: I747307317c45085f9f7762d659870c5bd75b908b Reviewed-on: https://cl.tvl.fyi/c/depot/+/10958 Tested-by: BuildkiteCI Reviewed-by: flokli --- tvix/glue/src/tvix_io.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tvix/glue/src/tvix_io.rs b/tvix/glue/src/tvix_io.rs index 19e5dd0b41..9fb9fbc375 100644 --- a/tvix/glue/src/tvix_io.rs +++ b/tvix/glue/src/tvix_io.rs @@ -33,8 +33,7 @@ where } fn import_path(&self, path: &Path) -> io::Result { - let imported_path = self.actual.as_ref().import_path(path)?; - Ok(imported_path) + self.actual.as_ref().import_path(path) } fn path_exists(&self, path: &Path) -> io::Result { -- cgit 1.4.1