Skip to content

Commit

Permalink
whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil Cummins committed Sep 25, 2024
1 parent f9a1803 commit b1e3f2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/prelink.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub fn embedded_python_standard_library() -> Result<TempDir, io::Error> {
.unpack(stdlib.path())
.unwrap();

Ok(stdlib);
Ok(stdlib)
}

pub fn embedded_helper_utils() -> Result<TempDir, io::Error> {
Expand All @@ -37,7 +37,7 @@ pub fn embedded_helper_utils() -> Result<TempDir, io::Error> {
.unpack(bundled.path())
.unwrap();

Ok(bundled);
Ok(bundled)
}

pub fn bundle_libraries(
Expand Down Expand Up @@ -136,5 +136,5 @@ pub fn bundle_libraries(
}
}

Ok(libraries);
Ok(libraries)
}

0 comments on commit b1e3f2f

Please sign in to comment.