From 7b3a9c2859f85800320f09549768f3ccc3e6af61 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Fri, 17 Oct 2025 14:19:05 -0500 Subject: [PATCH] Avoid obfuscating pyx tokens in `uv auth token` output (#16345) --- crates/uv/src/commands/auth/token.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv/src/commands/auth/token.rs b/crates/uv/src/commands/auth/token.rs index ffd3547d1..b28652df4 100644 --- a/crates/uv/src/commands/auth/token.rs +++ b/crates/uv/src/commands/auth/token.rs @@ -130,6 +130,6 @@ async fn pyx_refresh(store: &PyxTokenStore, client: &BaseClient, printer: Printe } }; - writeln!(printer.stdout(), "{}", token.cyan())?; + writeln!(printer.stdout(), "{}", token.as_str().cyan())?; Ok(()) }