Skip to content

Commit 3e9ccbd

Browse files
committed
fix: lint
1 parent 153bc57 commit 3e9ccbd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/models/test_openai.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2966,7 +2966,9 @@ async def test_openai_response_prefix_stream(allow_model_requests: None):
29662966
agent = Agent(m)
29672967

29682968
event_parts: list[Any] = []
2969-
async with agent.iter(user_prompt='What is the name of color #FF0000', response_prefix="It's name is ") as agent_run:
2969+
async with agent.iter(
2970+
user_prompt='What is the name of color #FF0000', response_prefix="It's name is "
2971+
) as agent_run:
29702972
async for node in agent_run:
29712973
if Agent.is_model_request_node(node):
29722974
async with node.stream(agent_run.ctx) as request_stream:

0 commit comments

Comments
 (0)