From fae9a70ca09bfcf5a845aef6a1cf42daef629e9b Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Tue, 6 Aug 2024 17:29:56 -0400 Subject: [PATCH] Add help heading for `--no-sources` (#5833) --- crates/uv-cli/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/uv-cli/src/lib.rs b/crates/uv-cli/src/lib.rs index 69dbc66f3..05c58a088 100644 --- a/crates/uv-cli/src/lib.rs +++ b/crates/uv-cli/src/lib.rs @@ -2902,7 +2902,7 @@ pub struct InstallerArgs { /// Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the /// standards-compliant, publishable package metadata, as opposed to using any local or Git /// sources. - #[arg(long)] + #[arg(long, help_heading = "Resolver options")] pub no_sources: bool, } @@ -3044,7 +3044,7 @@ pub struct ResolverArgs { /// Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the /// standards-compliant, publishable package metadata, as opposed to using any local or Git /// sources. - #[arg(long)] + #[arg(long, help_heading = "Resolver options")] pub no_sources: bool, } @@ -3234,7 +3234,7 @@ pub struct ResolverInstallerArgs { /// Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the /// standards-compliant, publishable package metadata, as opposed to using any local or Git /// sources. - #[arg(long)] + #[arg(long, help_heading = "Resolver options")] pub no_sources: bool, }