From ef3eaeef1c4b2ef18d83795724d6a70cfae2dc4b Mon Sep 17 00:00:00 2001 From: Jer Miller Date: Sun, 26 Jul 2026 11:45:28 -0600 Subject: [PATCH] style: apply ruff formatting to talent day-index changes --- solstone/think/log_retention.py | 4 +++- tests/test_surfaces_health.py | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/solstone/think/log_retention.py b/solstone/think/log_retention.py index bae0d617a..94679886d 100644 --- a/solstone/think/log_retention.py +++ b/solstone/think/log_retention.py @@ -431,7 +431,9 @@ def _scan_talent_day_index( _mark_skipped(result, "talent_day_index") -def _inspect_old_talent_day_index(path: Path, cutoff: date) -> _TalentDayIndexInspection: +def _inspect_old_talent_day_index( + path: Path, cutoff: date +) -> _TalentDayIndexInspection: valid_row_days: list[date] = [] try: with path.open(encoding="utf-8") as handle: diff --git a/tests/test_surfaces_health.py b/tests/test_surfaces_health.py index 2ec97884c..6b969874f 100644 --- a/tests/test_surfaces_health.py +++ b/tests/test_surfaces_health.py @@ -1043,7 +1043,9 @@ def test_corrupt_talent_day_index_rows_fail_closed_globally( "degraded": {"reason": "near_empty", "output_tokens": 12}, }, ) - with (tmp_path / "talents" / "20260401.jsonl").open("a", encoding="utf-8") as handle: + with (tmp_path / "talents" / "20260401.jsonl").open( + "a", encoding="utf-8" + ) as handle: handle.write(raw_line) report = health_surface.summary("20260410") -- 2.51.2