From 8310a495ba84e955cc3d253b530a08fb3dd54fab Mon Sep 17 00:00:00 2001 From: JerrettDavis Date: Wed, 22 Apr 2026 22:21:00 -0500 Subject: [PATCH] style: match CI ruff formatting Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- tests/test_providers/test_universal.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/test_providers/test_universal.py b/tests/test_providers/test_universal.py index 1b83a678c..5a96800fb 100644 --- a/tests/test_providers/test_universal.py +++ b/tests/test_providers/test_universal.py @@ -423,9 +423,11 @@ class TestLiteLLMProvider: (), { "completion_cost": staticmethod( - lambda **kwargs: 1.23 - if kwargs["model"] == "priced-model" - else (_ for _ in ()).throw(RuntimeError("missing price")) + lambda **kwargs: ( + 1.23 + if kwargs["model"] == "priced-model" + else (_ for _ in ()).throw(RuntimeError("missing price")) + ) ) }, )(),