diff --git a/crates/uv-python/src/version_files.rs b/crates/uv-python/src/version_files.rs index eb1bdff52..50f0cb3ee 100644 --- a/crates/uv-python/src/version_files.rs +++ b/crates/uv-python/src/version_files.rs @@ -1,3 +1,4 @@ +use std::ops::Add; use std::path::{Path, PathBuf}; use fs_err as fs; @@ -146,6 +147,7 @@ impl PythonVersionFile { .iter() .map(PythonRequest::to_canonical_string) .join("\n") + .add("\n") .as_bytes(), ) .await