From 4dd57ef549623aa578099df3bfb464bbe205f6fc Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Sun, 20 Oct 2024 19:06:14 -0400 Subject: [PATCH] Fixtures --- crates/uv/src/commands/project/tree.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/uv/src/commands/project/tree.rs b/crates/uv/src/commands/project/tree.rs index 862266703b96..c767aca51fc7 100644 --- a/crates/uv/src/commands/project/tree.rs +++ b/crates/uv/src/commands/project/tree.rs @@ -1,6 +1,6 @@ use std::path::Path; -use anstream::println; +use anstream::print; use anyhow::Result; use uv_cache::Cache; @@ -101,7 +101,7 @@ pub(crate) async fn tree( invert, ); - println!("{tree}"); + print!("{tree}"); Ok(ExitStatus::Success) }