mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-03 10:33:49 +00:00
Hide python options in uv tool list
help (#6003)
## Summary Closes #5982 . ## Test Plan ``` cargo run tool list --help ``` --------- Co-authored-by: Zanie Blue <contact@zanie.dev>
This commit is contained in:
parent
d20314038f
commit
ef948619ee
3 changed files with 7 additions and 18 deletions
|
@ -2815,6 +2815,12 @@ pub struct ToolListArgs {
|
|||
/// Whether to display the path to each tool environment and installed executable.
|
||||
#[arg(long)]
|
||||
pub show_paths: bool,
|
||||
|
||||
// Hide unused global Python options.
|
||||
#[arg(long, hide = true)]
|
||||
pub python_preference: Option<PythonPreference>,
|
||||
#[arg(long, hide = true)]
|
||||
pub no_python_downloads: bool,
|
||||
}
|
||||
|
||||
#[derive(Args)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue