Differentiate freeze and list help text (#4751)

`uv pip freeze` and `uv pip list` had identical help text. This PR
differentiates them.
This commit is contained in:
David Poznik 2024-07-02 16:44:57 -07:00 committed by GitHub
parent 9d58c2a810
commit 7bb9b96dc3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -254,9 +254,9 @@ pub enum PipCommand {
Install(PipInstallArgs), Install(PipInstallArgs),
/// Uninstall packages from an environment. /// Uninstall packages from an environment.
Uninstall(PipUninstallArgs), Uninstall(PipUninstallArgs),
/// Enumerate the installed packages in an environment. /// List, in requirements format, packages installed in an environment.
Freeze(PipFreezeArgs), Freeze(PipFreezeArgs),
/// Enumerate the installed packages in an environment. /// List, in tabular format, packages installed in an environment.
List(PipListArgs), List(PipListArgs),
/// Show information about one or more installed packages. /// Show information about one or more installed packages.
Show(PipShowArgs), Show(PipShowArgs),