Skip to content

Commit e52a2ac

Browse files
committed
Lint fixes
1 parent ec81557 commit e52a2ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/server/request_handlers/test_default_request_handler.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import asyncio
2-
import time
32
import logging
3+
import time
44

55
from unittest.mock import (
66
AsyncMock,
@@ -595,7 +595,7 @@ async def execute(self, context: RequestContext, event_queue: EventQueue):
595595
updater = TaskUpdater(event_queue, task.id, task.context_id)
596596

597597
try:
598-
parts = [Part(root=TextPart(text=f'I am working'))]
598+
parts = [Part(root=TextPart(text='I am working'))]
599599
await updater.update_status(
600600
TaskState.working,
601601
message=updater.new_agent_message(parts),
@@ -628,7 +628,7 @@ async def test_on_message_send_non_blocking():
628628
message=Message(
629629
role=Role.user,
630630
message_id='msg_push',
631-
parts=[Part(root=TextPart(text=f'Hi'))],
631+
parts=[Part(root=TextPart(text='Hi'))],
632632
),
633633
configuration=MessageSendConfiguration(
634634
blocking=False, accepted_output_modes=['text/plain']

0 commit comments

Comments
 (0)