From 9e67909c8eddcd9ce76260aa384183e17f64df9b Mon Sep 17 00:00:00 2001 From: CleverThis Date: Thu, 23 Apr 2026 16:44:18 +0000 Subject: [PATCH] style: fix ruff format quote style in tdd_langgraph_execute_closed_state_steps.py Apply ruff format to fix single-quote vs double-quote inconsistency in f-string in step assertion, resolving CI lint/format check failure. --- features/steps/tdd_langgraph_execute_closed_state_steps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/steps/tdd_langgraph_execute_closed_state_steps.py b/features/steps/tdd_langgraph_execute_closed_state_steps.py index f4fe2d7ad..ab710b1ac 100644 --- a/features/steps/tdd_langgraph_execute_closed_state_steps.py +++ b/features/steps/tdd_langgraph_execute_closed_state_steps.py @@ -56,7 +56,7 @@ def step_assert_runtime_error(context: Context) -> None: ) assert "StateManager is closed" in str(context.execute_error), ( f'Expected "StateManager is closed" in error message, ' - f'got: {context.execute_error}' + f"got: {context.execute_error}" )