refactor: remove redundant platform tool app assignment

`CrewAIPlatformActionTool` already receives `app` through Pydantic during base initialization. Remove the duplicate assignment to retain one owner for field state.
This commit is contained in:
Lucas Gomide
2026-08-05 18:56:59 -03:00
parent e819cd5f2b
commit c666a646f3

View File

@@ -50,7 +50,6 @@ class CrewAIPlatformActionTool(BaseTool):
args_schema=args_schema,
app=app,
)
self.app = app
self.action_name = action_name
self.action_schema = action_schema