From 4c24022192ddf0c935ce4bc1af22ef7d65c7a2b4 Mon Sep 17 00:00:00 2001 From: Kinuax Date: Sun, 24 Mar 2024 19:08:46 +0100 Subject: [PATCH] cli: improve add command help (#9230) --- 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)