style(fase1): ruff format spike modules

This commit is contained in:
Kjell Tore Guttormsen 2026-06-24 10:34:27 +02:00
commit c1317689f1
6 changed files with 123 additions and 26 deletions

View file

@ -73,7 +73,9 @@ def test_retrieve_finds_structural_match_over_text_decoys() -> None:
def test_retrieve_is_deterministic() -> None:
store, _ = _store_with_true_match_and_decoys()
assert [h.id for h in store.retrieve(_QUERY, k=3)] == [h.id for h in store.retrieve(_QUERY, k=3)]
assert [h.id for h in store.retrieve(_QUERY, k=3)] == [
h.id for h in store.retrieve(_QUERY, k=3)
]
def test_retrieve_rejects_non_positive_k() -> None: