about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/glue/src/tvix_io.rs3
1 files changed, 1 insertions, 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<PathBuf> {
-        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<bool> {