From ef3a39e34a7dbd7b3d94b5f97fad381dfb577037 Mon Sep 17 00:00:00 2001 From: Kinuax Date: Sun, 24 Mar 2024 18:43:14 +0100 Subject: [PATCH] Clarify add command help --- src/poetry/console/commands/add.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/poetry/console/commands/add.py b/src/poetry/console/commands/add.py index 67300f5557a..852798f99ce 100644 --- a/src/poetry/console/commands/add.py +++ b/src/poetry/console/commands/add.py @@ -23,7 +23,7 @@ class AddCommand(InstallerCommand, InitCommand): name = "add" - description = "Adds a new dependency to pyproject.toml." + description = "Adds a new dependency to pyproject.toml and installs it." arguments: ClassVar[list[Argument]] = [ argument("name", "The packages to add.", multiple=True)