From 2dd16e8f200c2b2b421ae6a081c0227513d9cc95 Mon Sep 17 00:00:00 2001 From: Archkon <180910180+Archkon@users.noreply.github.com> Date: Tue, 10 Dec 2024 12:49:55 +0800 Subject: [PATCH] Update main.py typo error --- src/crewai/cli/tools/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/crewai/cli/tools/main.py b/src/crewai/cli/tools/main.py index 35652a1ec..b2d2cec99 100644 --- a/src/crewai/cli/tools/main.py +++ b/src/crewai/cli/tools/main.py @@ -117,7 +117,7 @@ class ToolCommand(BaseCommand, PlusAPIMixin): published_handle = publish_response.json()["handle"] console.print( - f"Succesfully published {published_handle} ({project_version}).\nInstall it in other projects with crewai tool install {published_handle}", + f"Successfully published {published_handle} ({project_version}).\nInstall it in other projects with crewai tool install {published_handle}", style="bold green", ) @@ -138,7 +138,7 @@ class ToolCommand(BaseCommand, PlusAPIMixin): self._add_package(get_response.json()) - console.print(f"Succesfully installed {handle}", style="bold green") + console.print(f"Successfully installed {handle}", style="bold green") def login(self): login_response = self.plus_api_client.login_to_tool_repository()