Add help heading for `--no-sources` (#5833)

This commit is contained in:
Charlie Marsh 2024-08-06 17:29:56 -04:00 committed by GitHub
parent c0c26cc542
commit fae9a70ca0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -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,
}