Avoid obfuscating pyx tokens in `uv auth token` output (#16345)

This commit is contained in:
Zanie Blue 2025-10-17 14:19:05 -05:00 committed by GitHub
parent de9f299b80
commit 7b3a9c2859
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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(())
}