From 85369cf23e4ff735927cf868ff21b6661d82ec2e Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Thu, 2 Apr 2026 12:44:44 +0000 Subject: [PATCH] style: fix ruff formatting in converter.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: João --- lib/crewai/src/crewai/utilities/converter.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/crewai/src/crewai/utilities/converter.py b/lib/crewai/src/crewai/utilities/converter.py index 562b549fd..d253cc6e6 100644 --- a/lib/crewai/src/crewai/utilities/converter.py +++ b/lib/crewai/src/crewai/utilities/converter.py @@ -589,7 +589,9 @@ async def aconvert_with_instructions( instructions=instructions, ) exported_result = ( - await converter.ato_pydantic() if not is_json_output else await converter.ato_json() + await converter.ato_pydantic() + if not is_json_output + else await converter.ato_json() ) if isinstance(exported_result, ConverterError):