Skip to content

Commit 19208e5

Browse files
committed
fix lint
1 parent 7c80489 commit 19208e5

File tree

1 file changed

+4
-2
lines changed
  • src/codegate/pipeline/codegate_context_retriever

1 file changed

+4
-2
lines changed

src/codegate/pipeline/codegate_context_retriever/codegate.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,10 @@ async def process(
140140
task_start, task_content, task_end, rest_of_message = match.groups()
141141

142142
# Embed the context into the task block
143-
updated_task_content = f"{task_start}Context: {context_str}\n" + \
144-
f"Query: {task_content.strip()}</details>{task_end}"
143+
updated_task_content = (
144+
f"{task_start}Context: {context_str}\n"
145+
+ f"Query: {task_content.strip()}</details>{task_end}"
146+
)
145147

146148
# Combine the updated task block with the rest of the message
147149
context_msg = updated_task_content + rest_of_message

0 commit comments

Comments
 (0)