From e6f3dae0e78be8715fb58045ce69adb3980a9408 Mon Sep 17 00:00:00 2001 From: Heitor Carvalho Date: Mon, 19 May 2025 13:20:52 -0300 Subject: [PATCH] Remove redundant command and update help text --- src/crewai/cli/cli.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/crewai/cli/cli.py b/src/crewai/cli/cli.py index b2d59adbe..20e007944 100644 --- a/src/crewai/cli/cli.py +++ b/src/crewai/cli/cli.py @@ -212,15 +212,9 @@ def update(): update_crew() -@crewai.command() -def signup(): - """Sign Up/Login to CrewAI+.""" - AuthenticationCommand().signup() - - @crewai.command() def login(): - """Sign Up/Login to CrewAI+.""" + """Sign Up/Login to CrewAI Enterprise.""" AuthenticationCommand().signup()