From a444f10e29dd5f7fee89e55119a278e327687f7c Mon Sep 17 00:00:00 2001 From: Ryan Loney Date: Thu, 20 Aug 2026 14:02:55 -0700 Subject: [PATCH] style(cerebras): match repository formatter --- litellm/llms/cerebras/chat.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/litellm/llms/cerebras/chat.py b/litellm/llms/cerebras/chat.py index d3dd426173a..887cba047d6 100644 --- a/litellm/llms/cerebras/chat.py +++ b/litellm/llms/cerebras/chat.py @@ -120,10 +120,6 @@ class CerebrasConfig(OpenAIGPTConfig): ) -> dict: supported_openai_params: Final = self.get_supported_openai_params(model=model) optional_params.update( - { - param: value - for param, value in non_default_params.items() - if param in supported_openai_params - } + {param: value for param, value in non_default_params.items() if param in supported_openai_params} ) return optional_params