Skip to content

Commit 937542a

Browse files
committed
chore: additional lint
1 parent 8d1a868 commit 937542a

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

  • packages/optimization/src/ldai_optimization

packages/optimization/src/ldai_optimization/client.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,6 @@ def _parse_judge_response(
357357
)
358358
return JudgeResult(score=0.0, rationale=None)
359359

360-
361360
async def _call_judges(
362361
self,
363362
completion_response: str,
@@ -1929,7 +1928,9 @@ def _commit_variation(
19291928
model_name = optimize_context.current_model or ""
19301929
model_config_key = model_name # fallback if lookup fails
19311930
try:
1932-
configs_to_search = model_configs if model_configs is not None else api_client.get_model_configs(project_key)
1931+
configs_to_search = (
1932+
model_configs if model_configs is not None else api_client.get_model_configs(project_key)
1933+
)
19331934
match = _find_model_config(model_name, configs_to_search)
19341935
if match:
19351936
model_config_key = match["key"]

0 commit comments

Comments
 (0)