Skip to content

Commit

Permalink
Fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
charliermarsh committed Oct 20, 2024
1 parent 356b644 commit 4dd57ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/uv/src/commands/project/tree.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::path::Path;

use anstream::println;
use anstream::print;
use anyhow::Result;

use uv_cache::Cache;
Expand Down Expand Up @@ -101,7 +101,7 @@ pub(crate) async fn tree(
invert,
);

println!("{tree}");
print!("{tree}");

Ok(ExitStatus::Success)
}

0 comments on commit 4dd57ef

Please sign in to comment.