From 3ffc8f6a8e12f4cc8101dca12e4cd8a598e1c893 Mon Sep 17 00:00:00 2001 From: Drew Morris Date: Sun, 14 Jun 2026 22:54:44 -0400 Subject: [PATCH] style(test): ruff format tdd timer cancel race steps (rebase fixup) Co-Authored-By: Claude Opus 4.8 (1M context) --- features/steps/tdd_mcp_client_timer_cancel_race_steps.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/features/steps/tdd_mcp_client_timer_cancel_race_steps.py b/features/steps/tdd_mcp_client_timer_cancel_race_steps.py index fcd02e08b..5ff0c078d 100644 --- a/features/steps/tdd_mcp_client_timer_cancel_race_steps.py +++ b/features/steps/tdd_mcp_client_timer_cancel_race_steps.py @@ -142,6 +142,7 @@ def step_trigger_timer_race(context: Context) -> None: # Ensure client is in running state if client.state not in ("running",): from contextlib import suppress as _suppress + client._started = False client._shutting_down = False client._state = "idle" @@ -166,6 +167,7 @@ def step_trigger_timer_race(context: Context) -> None: def shutdown_repeatedly() -> None: from contextlib import suppress + for _j in range(50): if client.state not in ("running",): break