Apply ruff format after merging phase2-secondary-prediction

The merged proc_idx/proc_map plumbing wasn't run through ruff format
before merging; reflow only, no logic changes.
This commit is contained in:
2026-07-15 10:00:36 +02:00
parent a5683517be
commit 05d5dee606
7 changed files with 67 additions and 26 deletions
+1 -3
View File
@@ -65,9 +65,7 @@ def test_build_process_map_from_files_keeps_most_frequent(tmp_path):
"""process counts: eIoni=5, phot=3, compt=2, Rayl=1 — with n_experts=3, only
the top 2 (eIoni, phot) get their own index; compt/Rayl share the "other"
(last) index."""
process = (
["eIoni"] * 5 + ["phot"] * 3 + ["compt"] * 2 + ["Rayl"] * 1
)
process = ["eIoni"] * 5 + ["phot"] * 3 + ["compt"] * 2 + ["Rayl"] * 1
path = tmp_path / "shard-000.parquet"
pd.DataFrame({"process": process}).to_parquet(path)