From 84a9ecb86a45e86d486b03bc3b1b68b6d4e0ee19 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Wed, 1 Apr 2026 10:55:42 +0000 Subject: [PATCH] style: apply ruff formatting to internal_instructor.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/internal_instructor.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/crewai/src/crewai/utilities/internal_instructor.py b/lib/crewai/src/crewai/utilities/internal_instructor.py index bd53ec836..42cd3234e 100644 --- a/lib/crewai/src/crewai/utilities/internal_instructor.py +++ b/lib/crewai/src/crewai/utilities/internal_instructor.py @@ -100,9 +100,7 @@ class InternalInstructor(Generic[T]): extra_kwargs = self._get_llm_extra_kwargs() - return instructor.from_provider( - f"{provider}/{model_string}", **extra_kwargs - ) + return instructor.from_provider(f"{provider}/{model_string}", **extra_kwargs) def _get_llm_extra_kwargs(self) -> dict[str, Any]: """Extract extra keyword arguments from the LLM to pass to the instructor client.