style: match CI ruff formatting

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
JerrettDavis 2026-04-22 22:21:00 -05:00
parent c8fc415707
commit 8310a495ba

View file

@ -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"))
)
)
},
)(),