Remove redundant alias in uv init CLI (#10124)

This commit is contained in:
Charlie Marsh 2024-12-23 14:05:19 -05:00 committed by GitHub
parent 340e30d91e
commit 561103bf68
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2565,7 +2565,7 @@ pub struct InitArgs {
///
/// By default, adds a requirement on the system Python version; use `--python` to specify an
/// alternative Python version requirement.
#[arg(long, alias="script", conflicts_with_all=["app", "lib", "package", "build_backend"])]
#[arg(long, conflicts_with_all=["app", "lib", "package", "build_backend"])]
pub r#script: bool,
/// Initialize a version control system for the project.