remove newline

This commit is contained in:
Josh Thomas 2024-12-05 10:56:48 -06:00
parent 66c82460da
commit dff986b91b

View file

@ -35,7 +35,6 @@ impl PythonEnvironment {
Python::with_gil(|py| { Python::with_gil(|py| {
let build = Interpreter::for_build(py)?; let build = Interpreter::for_build(py)?;
let runtime = Interpreter::for_runtime(build.sys_executable())?; let runtime = Interpreter::for_runtime(build.sys_executable())?;
let root = runtime.sys_prefix().clone(); let root = runtime.sys_prefix().clone();
Ok(Self::new(root, build, runtime)) Ok(Self::new(root, build, runtime))