From 6ff19dc23293b9feef47fabe8e800e46aea4060a Mon Sep 17 00:00:00 2001 From: Piotr Mardziel Date: Tue, 5 Nov 2024 13:33:21 -0800 Subject: [PATCH] Update annotations.py --- src/crewai/project/annotations.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/crewai/project/annotations.py b/src/crewai/project/annotations.py index 6c0b9942a..07d07b368 100644 --- a/src/crewai/project/annotations.py +++ b/src/crewai/project/annotations.py @@ -71,6 +71,8 @@ def pipeline(func): def crew(func) -> Callable[..., Crew]: + + @wraps(func) def wrapper(self, *args, **kwargs) -> Crew: instantiated_tasks = [] instantiated_agents = []