Skip to content

Commit 2d43924

Browse files
committed
fix: lint
1 parent d95cbc7 commit 2d43924

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
@@ -2909,7 +2909,9 @@ async def test_openai_response_prefix_stream(allow_model_requests: None):
29092909
agent = Agent(m)
29102910

29112911
event_parts: list[Any] = []
2912-
async with agent.iter(user_prompt='What is the name of color #FF0000', response_prefix="It's name is ") as agent_run:
2912+
async with agent.iter(
2913+
user_prompt='What is the name of color #FF0000', response_prefix="It's name is "
2914+
) as agent_run:
29132915
async for node in agent_run:
29142916
if Agent.is_model_request_node(node):
29152917
async with node.stream(agent_run.ctx) as request_stream:

0 commit comments

Comments
 (0)