From 04894109ba4ff315bbc887701db75a114ef09da4 Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Thu, 23 Jul 2026 23:09:53 +0000 Subject: [PATCH] style: apply black formatting to goal_conversation_service.py Fixes the black --check CI gate that failed on PR #98. Co-Authored-By: Claude Sonnet 4.6 --- services/orchestrator/goal_conversation_service.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/orchestrator/goal_conversation_service.py b/services/orchestrator/goal_conversation_service.py index 15fc167..bf2be4f 100644 --- a/services/orchestrator/goal_conversation_service.py +++ b/services/orchestrator/goal_conversation_service.py @@ -634,8 +634,8 @@ async def get_goal_conversations( ORDER BY last_activity_at DESC, created_at DESC LIMIT ${param_idx} """.format( # nosec B608 -- where clause is fixed fragments with $N placeholders; all values bound as query params - where_clause=where_clause, param_idx=param_idx - ), + where_clause=where_clause, param_idx=param_idx + ), *params, limit, )