From 561103bf68381ec4bf8f8648284225d42b578410 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Mon, 23 Dec 2024 14:05:19 -0500 Subject: [PATCH] Remove redundant alias in `uv init` CLI (#10124) --- crates/uv-cli/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv-cli/src/lib.rs b/crates/uv-cli/src/lib.rs index 731c90742..cc2bd21e5 100644 --- a/crates/uv-cli/src/lib.rs +++ b/crates/uv-cli/src/lib.rs @@ -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.