chore(format): ruff format the 4 drifted files (no behavior change)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01AaQCFnfsh3tfq1VfzdJpoi
This commit is contained in:
Kjell Tore Guttormsen 2026-07-03 00:32:49 +02:00
commit 705c5dd49a
4 changed files with 95 additions and 31 deletions

View file

@ -28,7 +28,10 @@ def test_malformed_data_source_raises() -> None:
def test_malformed_model_map_raises() -> None:
bad_map = {"local": {"proposer": "qwen3:4b"}, "azure": {"default": "x"}} # local missing 'default'
bad_map = {
"local": {"proposer": "qwen3:4b"},
"azure": {"default": "x"},
} # local missing 'default'
with pytest.raises(ValidationError):
load_contracts(_DS, _TERM, _FB, model_map=bad_map)