Fix F541 lint failure in the event study summary
Deploy / lint (push) Successful in 8s
Deploy / test (push) Successful in 1m47s
Deploy / deploy (push) Successful in 38s

A conditional clause in the summary sentence carried an f prefix with no
placeholders, failing `ruff check app/` and blocking the deploy. Literal only;
the rendered text is unchanged.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-26 17:29:08 +02:00
co-authored by Claude Opus 5
parent 83c0555e52
commit d2a27d4a78
+1 -1
View File
@@ -282,7 +282,7 @@ async def run_event_study(
f"{metrics['events']} of {reliability['events_detected']} detected corrections "
f"fall in the test period"
+ (
f"; too few to read recall as a property of the score."
"; too few to read recall as a property of the score."
if reliability["underpowered"]
else "."
)